Created
March 30, 2019 08:39
-
-
Save hgkmail/b42363af2421e33b8985dd83bb51e09a to your computer and use it in GitHub Desktop.
SConstruct example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
env=Environment(CPPPATH='/usr/include/boost/', | |
CPPDEFINES=[], | |
LIBS=["pthread"], | |
CXXFLAGS="-std=c++0x -g -O0" | |
) | |
env.Program("app", ["app.cpp"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment