Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus committed Jun 24, 2012
1 parent ba15e90 commit 56980ff
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions wscript
Expand Up @@ -13,17 +13,17 @@ def set_options(opt):
def configure(conf):
conf.check_tool('compiler_cxx')
conf.check_tool('node_addon')
conf.check_tool('osx')
#conf.check_tool('osx')

tc_framework = 'TelldusCore'
conf.env.append_value("FRAMEWORK_TC", tc_framework)
tc_frameworkpath = '/Library/Frameworks/TelldusCore.framework/'
conf.env.append_value("FRAMEWORKPATH_TC", tc_frameworkpath)
tc_lib = tc_frameworkpath + 'Headers/'
conf.env.append_value("CPPPATH_TC", tc_lib)
#tc_framework = 'TelldusCore'
#conf.env.append_value("FRAMEWORK_TC", tc_framework)
#tc_frameworkpath = '/Library/Frameworks/TelldusCore.framework/'
#conf.env.append_value("FRAMEWORKPATH_TC", tc_frameworkpath)
#tc_lib = tc_frameworkpath + 'Headers/'
#conf.env.append_value("CPPPATH_TC", tc_lib)

def build(bld):
obj = bld.new_task_gen('cxx', 'shlib', 'node_addon')
obj.target = 'telldus'
obj.source = 'telldus.cc'
obj.uselib = "TC"
#obj.uselib = "TC"

0 comments on commit 56980ff

Please sign in to comment.