Changeset 4:f5d22f58ef6b in vscpl


Ignore:
Timestamp:
01/19/13 14:00:47 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/xplane/hg/vscpl' '/'>, 'public')
Message:

Added the Mutex implementations

Files:
5 added
1 edited

Legend:

Unmodified
Added
Removed
  • test/Makefile.am

    r2 r4  
    11INCLUDES=-I$(top_srcdir)/src -I../src/hu/varadiistvan/scpl
    22
    3 noinst_PROGRAMS=testthread
     3noinst_PROGRAMS=testthread testmutex
     4
     5LDADD=../src/hu/varadiistvan/scpl/libvscpl.la
     6if TARGET_API_POSIX
     7LDADD+=-lpthread
     8endif
     9if TARGET_API_WIN32
     10AM_LDFLAGS=-static -static-libgcc -static-libstdc++
     11endif
    412
    513testthread_SOURCES=testthread.cc
    6 testthread_LDADD=../src/hu/varadiistvan/scpl/libvscpl.la
    7 if TARGET_API_POSIX
    8 testthread_LDADD+=-lpthread
    9 endif
    10 if TARGET_API_WIN32
    11 testthread_LDFLAGS=-static -static-libgcc -static-libstdc++
    12 endif
     14
     15testmutex_SOURCES=testmutex.cc
Note: See TracChangeset for help on using the changeset viewer.