Added the sbdump project.
This commit is contained in:
parent
d56bd81a0a
commit
e45a9473f8
1 changed files with 19 additions and 0 deletions
19
premake5.lua
19
premake5.lua
|
@ -80,3 +80,22 @@ workspace "ssc"
|
|||
"{RMDIR} \"%{cfg.buildtarget.directory}ssc\"",
|
||||
"{COPY} \"%{wks.location}stdlib\" \"%{cfg.buildtarget.directory}ssc\"",
|
||||
}
|
||||
|
||||
-- sbdump utility
|
||||
project "sbdump"
|
||||
kind "ConsoleApp"
|
||||
language "C#"
|
||||
entrypoint "arookas.sbdump"
|
||||
namespace "arookas"
|
||||
location "sbdump"
|
||||
|
||||
links { "System", "arookas" }
|
||||
|
||||
files {
|
||||
"sbdump/**.cs",
|
||||
}
|
||||
|
||||
excludes {
|
||||
"sbdump/bin/**",
|
||||
"sbdump/obj/**",
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue