-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSCsub
More file actions
22 lines (10 loc) · 759 Bytes
/
Copy pathSCsub
File metadata and controls
22 lines (10 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Import('env')
env.add_source_files(env.modules_sources, "*.cpp") # Add all cpp files to the build
#env.add_source_files(env.modules_sources, "tiny-process-library/*.cpp") # Add all cpp files to the build
env.add_source_files(env.modules_sources, "tiny-process-library/process.cpp") # Add all cpp files to the build
env.add_source_files(env.modules_sources, "tiny-process-library/process_unix.cpp") # Add all cpp files to the build
env.Append(CPPPATH=["tiny-process-library"]) # this is a relative path
#src_list = ["summator.cpp", "other.cpp", "etc.cpp"]
#env.add_source_files(env.modules_sources, src_list)
#env.Append(CPPPATH=["mylib/include"]) # this is a relative path
#env.Append(CPPPATH=["#myotherlib/include"]) # this is an 'absolute' path