Changeset 2:b8c3435b818d in xplcommon for src/xplcommon/Makefile.am


Ignore:
Timestamp:
12/27/12 12:36:41 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Using less ambiguous conditionals to decide between POSIX vs. Windows compilation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/xplcommon/Makefile.am

    r1 r2  
    11lib_LTLIBRARIES=libxplcommon.la
    22
    3 libxplcommon_la_SOURCES=\
     3libxplcommon_la_SOURCES=
     4
     5if TARGET_API_POSIX
     6libxplcommon_la_SOURCES +=      \
    47        POSIXThread.cc          \
    5         Win32Thread.cc          \
    68        POSIXWaitable.cc        \
    79        POSIXWaiter.cc
     10endif
     11
     12if TARGET_API_WIN32
     13libxplcommon_la_SOURCES +=      \
     14        Win32Thread.cc
     15endif
    816
    917include_xplcommondir=$(includedir)/xplcommon
Note: See TracChangeset for help on using the changeset viewer.