mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
54 lines
1.4 KiB
Lua
54 lines
1.4 KiB
Lua
solution "xlnt"
|
|
configurations { "Debug", "Release" }
|
|
platforms { "x64" }
|
|
location ("./" .. _ACTION)
|
|
configuration "Debug"
|
|
flags { "Symbols" }
|
|
|
|
project "xlnt.test"
|
|
kind "ConsoleApp"
|
|
language "C++"
|
|
targetname "xlnt.test"
|
|
targetdir "../../bin"
|
|
includedirs {
|
|
"../../include",
|
|
"../../third-party/cxxtest",
|
|
"../../third-party/miniz",
|
|
"../../third-party/pugixml/src"
|
|
}
|
|
files {
|
|
"../../tests/*.hpp",
|
|
"../../tests/runner-autogen.cpp"
|
|
}
|
|
links { "xlnt" }
|
|
prebuildcommands { "../../../third-party/cxxtest/bin/cxxtestgen --runner=ErrorPrinter -o ../../../tests/runner-autogen.cpp ../../../tests/*.hpp" }
|
|
flags { "Unicode" }
|
|
configuration "windows"
|
|
defines { "WIN32" }
|
|
links { "Shlwapi" }
|
|
|
|
project "xlnt"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
targetdir "../../lib/"
|
|
includedirs {
|
|
"../../include",
|
|
"../../third-party/miniz",
|
|
"../../third-party/pugixml/src"
|
|
}
|
|
files {
|
|
"../../source/**.cpp",
|
|
"../../source/**.hpp",
|
|
"../../include/xlnt/**.hpp",
|
|
"../../third-party/pugixml/src/pugixml.cpp",
|
|
"../../third-party/miniz/miniz.c"
|
|
}
|
|
flags { "Unicode" }
|
|
configuration "Debug"
|
|
flags { "FatalWarnings" }
|
|
configuration "windows"
|
|
defines {
|
|
"WIN32",
|
|
"_CRT_SECURE_NO_WARNINGS"
|
|
}
|