Skip to content

Commit

Permalink
Edited wscript via GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
nponeccop committed Aug 24, 2011
1 parent 957bdac commit 2110533
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wscript
Expand Up @@ -13,10 +13,11 @@ def configure(conf):
conf.check_tool("node_addon")
conf.check_cfg(atleast_pkgconfig_version='0.0.0', mandatory=True, errmsg='pkg-config was not found')
conf.check_cfg(package='libzmq', atleast_version='2.1.0', uselib_store='ZMQ', args='--cflags --libs', mandatory=True, errmsg='Package libzmq was not found')
conf.check(lib='uuid', uselib_store='UUID')

def build(bld):
obj = bld.new_task_gen("cxx", "shlib", "node_addon")
obj.cxxflags = ["-Wall", "-Werror"]
obj.target = "binding"
obj.source = "binding.cc"
obj.uselib = "ZMQ"
obj.uselib = "ZMQ UUID"

0 comments on commit 2110533

Please sign in to comment.