Tools and libraries to glue C/C++ APIs to high-level languages
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

50 lines
1.1 KiB

-- This is the starting point of the build scripts for the project.
-- It defines the common build settings that all the projects share
-- and calls the build scripts of all the sub-projects.
config = {}
dofile "Helpers.lua"
dofile "LLVM.lua"
solution "CppSharp"
configurations { "Debug", "Release" }
platforms { target_architecture() }
characterset "Unicode"
symbols "On"
location (builddir)
objdir (objsdir)
targetdir (libdir)
debugdir (bindir)
filter "system:windows"
defines { "WINDOWS" }
filter {}
group "Libraries"
include (srcdir .. "/Core")
include (srcdir .. "/AST")
include (srcdir .. "/CppParser")
include (srcdir .. "/CppParser/Bindings")
include (srcdir .. "/CppParser/ParserGen")
include (srcdir .. "/Parser")
include (srcdir .. "/CLI")
include (srcdir .. "/Generator")
include (srcdir .. "/Generator.Tests")
include (srcdir .. "/Runtime")
dofile "Tests.lua"
group "Tests"
IncludeTests()
if string.starts(action, "vs") then
group "Examples"
IncludeExamples()
end