summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-12-31 00:09:00 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-12-31 00:09:00 +0100
commitf1d6b1400f5192ef97f84ab4fd7ce83a60168dba (patch)
treeb59c7e4b6d311b15dde45f7ada0cebc697208c71 /SConstruct
parentf8f3ac8e1b80ac9263940ace3028467c636e6004 (diff)
Link with soci_core on OS X too.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index c2755c5..1fb9ca4 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3,7 +3,7 @@ AddOption('--release', action = 'store_true')
env = Environment(CPPPATH = ['.'], CCFLAGS = ['-pthread'], LINKFLAGS = ['-pthread'])
if env['PLATFORM'] == 'darwin':
- env.Append(LIBS = ['boost_system', 'boost_filesystem', 'boost_regex', 'boost_thread', 'boost_program_options', 'mp3lame'])
+ env.Append(LIBS = ['boost_system', 'boost_filesystem', 'boost_regex', 'boost_thread', 'boost_program_options', 'mp3lame', 'soci_core'])
else:
conf = Configure(env)
conf.CheckLib('boost_system-mt')