Ignore:
Timestamp:
Sep 21, 2006, 9:40:35 PM (19 years ago)
Author:
dmik
Message:

Psi: General: All output directories are made OS-specific (by adding the OS name to the path), to make it possible to build Psi for different platforms from a single source tree.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • psi/trunk/libpsi/psiwidgets/psiwidgets.pro

    r43 r56  
    3232DEFINES += WIDGET_PLUGIN
    3333
     34OS = unknown
     35os2:OS = os2
     36win32:OS = win
     37unix:OS = nix
     38mac:OS = mac
     39
    3440debug: {
    35         MOC_DIR        = .debug/.moc
    36         OBJECTS_DIR    = .debug/.obj
    37         UI_DIR         = .debug/.ui
     41        MOC_DIR        = .debug/.$$OS/.moc
     42        OBJECTS_DIR    = .debug/.$$OS/.obj
     43        UI_DIR         = .debug/.$$OS/.ui
    3844} else {
    39         MOC_DIR        = .moc
    40         OBJECTS_DIR    = .obj
    41         UI_DIR         = .ui
     45        MOC_DIR        = .$$OS/.moc
     46        OBJECTS_DIR    = .$$OS/.obj
     47        UI_DIR         = .$$OS/.ui
    4248}
Note: See TracChangeset for help on using the changeset viewer.