Changeset 60 for qca


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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • qca/trunk/qca.pro

    r27 r60  
    55TARGET = qca
    66
    7 MOC_DIR        = .moc
    8 OBJECTS_DIR    = .obj
    9 UI_DIR         = .ui
     7OS = unknown
     8os2:OS = os2
     9win32:OS = win
     10unix:OS = nix
     11mac:OS = mac
     12
     13DESTDIR  = qca$$OS
     14
     15debug: {
     16        MOC_DIR        = .debug/.$$OS/.moc
     17        OBJECTS_DIR    = .debug/.$$OS/.obj
     18        UI_DIR         = .debug/.$$OS/.ui
     19} else {
     20        MOC_DIR        = .$$OS/.moc
     21        OBJECTS_DIR    = .$$OS/.obj
     22        UI_DIR         = .$$OS/.ui
     23}
    1024
    1125VER_MAJ = 1
Note: See TracChangeset for help on using the changeset viewer.