xlnt/build/premake/premake5.lua

60 lines
1.5 KiB
Lua
Raw Normal View History

2014-05-07 05:28:38 +08:00
solution "xlnt"
configurations { "Debug", "Release" }
platforms { "x64" }
location ("./" .. _ACTION)
configuration "Debug"
flags { "Symbols" }
optimize "Off"
configuration "Release"
optimize "Full"
project "xlnt.test"
kind "ConsoleApp"
language "C++"
targetname "xlnt.test"
targetdir "../../bin"
2014-05-07 05:28:38 +08:00
includedirs {
"../../include",
"../../third-party/pugixml/src",
"../../third-party/miniz",
"../../third-party/cxxtest"
2014-05-07 05:28:38 +08:00
}
files {
"../../tests/*.hpp",
"../../tests/runner-autogen.cpp"
2014-05-07 05:28:38 +08:00
}
links { "xlnt" }
prebuildcommands { "../../../third-party/cxxtest/bin/cxxtestgen --runner=ErrorPrinter -o ../../../tests/runner-autogen.cpp ../../../tests/*.hpp" }
flags { "Unicode" }
2014-05-07 05:28:38 +08:00
configuration "Release"
flags { "LinkTimeOptimization" }
2014-05-11 22:46:43 +08:00
configuration "windows"
defines { "WIN32" }
links { "Shlwapi" }
2014-05-07 05:28:38 +08:00
project "xlnt"
kind "StaticLib"
language "C++"
warnings "Extra"
targetdir "../../lib/"
2014-05-07 05:28:38 +08:00
includedirs {
"../../include",
"../../third-party/miniz",
"../../third-party/pugixml/src"
2014-05-21 22:20:30 +08:00
}
files {
"../../source/**.cpp",
"../../source/**.hpp",
"../../include/xlnt/**.hpp",
"../../third-party/miniz/miniz.c",
"../../third-party/pugixml/src/pugixml.cpp"
2014-05-21 22:20:30 +08:00
}
flags { "Unicode" }
2014-05-21 22:20:30 +08:00
configuration "Debug"
flags { "FatalWarnings" }
configuration "windows"
2014-06-11 05:12:15 +08:00
defines {
"WIN32",
"_CRT_SECURE_NO_WARNINGS"
}