Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoukjun committed Jun 1, 2019
1 parent 7b8699a commit e1eab62
Show file tree
Hide file tree
Showing 60 changed files with 12,933 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@
*.exe
*.out
*.app

# Generated datasets
*.csv
26 changes: 26 additions & 0 deletions SConstruct
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

env = Environment()

includes = '''
.
./lib/include
./lib/include/base
./lib/include/tools
./lib/include/user-api
./lib/include/dataflow-analysis
./lib/include/dataflow-specification-language
./lib/include/design-space-exploration
./lib/include/cost-analysis
./lib/include/abstract-hardware-model
./lib/src
'''
env.Append(LINKFLAGS=['-lboost_program_options', '-lboost_filesystem', '-lboost_system'])
env.Append(CXXFLAGS=['-std=c++17', '-lboost_program_options', '-lboost_filesystem', '-lboost_system'])
env.Append(LIBS=['-lboost_program_options', '-lboost_filesystem', '-lboost_system' ])

env.Append(CPPPATH = Split(includes))
#env.Program("maestro-top.cpp")
#env.Program('maestro', ['maestro-top.cpp', 'lib/src/maestro_v3.cpp', 'lib/src/BASE_base-objects.cpp' ])
env.Program('maestro', ['maestro-top.cpp', 'lib/src/BASE_base-objects.cpp' ])
#env.Library('maestro', ['maestro-top.cpp', 'lib/src/maestro_v3.cpp', 'lib/src/BASE_base-objects.cpp' ])

Loading

0 comments on commit e1eab62

Please sign in to comment.