Changeset 20:38521bf10e24 in xplcommon for test/Makefile.am


Ignore:
Timestamp:
12/30/12 16:45:26 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Implemented the Waiter and the WaitableEvent classes for Windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/Makefile.am

    r18 r20  
    44
    55testevent_SOURCES=testevent.cc
    6 testevent_LDADD=../src/xplcommon/libxplcommon.la -lpthread
     6testevent_LDADD=../src/xplcommon/libxplcommon.la
     7if TARGET_API_POSIX
     8testevent_LDADD+=-lpthread
     9endif
     10if TARGET_API_WIN32
     11testevent_LDFLAGS=-static-libgcc -static-libstdc++
     12endif
    713
    814testlocsock_SOURCES=testlocsock.cc
    9 testlocsock_LDADD=../src/xplcommon/libxplcommon.la -lpthread
     15testlocsock_LDADD=../src/xplcommon/libxplcommon.la
     16if TARGET_API_POSIX
     17testlocsock_LDADD+=-lpthread
     18endif
     19if TARGET_API_WIN32
     20testlocsock_LDFLAGS=-static-libgcc -static-libstdc++
     21endif
Note: See TracChangeset for help on using the changeset viewer.