Changeset 69


Ignore:
Timestamp:
Sep 23, 2006, 10:34:26 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.

Location:
qca-tls/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • qca-tls/trunk

    • Property svn:ignore
      •  

        old new  
        11.*
        22Makefile
        3 *.def
        4 *.dll
        5 *.lib
        6 *.obj
         3Makefile.*
         4qca-tls-os2
         5qca-tls-win
         6qca-tls-unix
         7qca-tls-mac
  • qca-tls/trunk/qca-tls.pro

    r34 r69  
    44CONFIG  += qt thread release plugin
    55TARGET   = qca-tls
     6
     7OS = unknown
     8os2:OS = os2
     9win32:OS = win
     10unix:OS = nix
     11mac:OS = mac
     12
     13DESTDIR  = qca-tls-$$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}
    624
    725!exists(qcaprovider.h) {
Note: See TracChangeset for help on using the changeset viewer.