Changeset 34:ad3194cb9bef in xplcommon for test/Makefile.am


Ignore:
Timestamp:
01/02/13 16:46:04 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Implemented a conditional variable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/Makefile.am

    r32 r34  
    11INCLUDES=-I$(top_srcdir)/src
    22
    3 noinst_PROGRAMS=testevent testlocsock testblkstream testmutex
     3noinst_PROGRAMS=testevent testlocsock testblkstream testmutex testcondvar
    44if TARGET_API_POSIX
    55noinst_PROGRAMS+=testrandom
     
    4242endif
    4343
     44testcondvar_SOURCES=testcondvar.cc
     45testcondvar_LDADD=../src/xplcommon/libxplcommon.la
     46if TARGET_API_POSIX
     47testcondvar_LDADD+=-lpthread
     48endif
     49if TARGET_API_WIN32
     50testcondvar_LDFLAGS=-static-libgcc -static-libstdc++
     51endif
     52
    4453testrandom_SOURCES=testrandom.cc
    4554testrandom_LDADD=../src/xplcommon/libxplcommon.la
Note: See TracChangeset for help on using the changeset viewer.