123456789101112131415161718192021222324252627282930313233343536373839 |
-
- project "updatesigntool"
- uuid "89b3630f-5728-4902-8258-d4dbc532e185"
- language "C++"
- location ( "../../build/" .. mpt_projectpathname )
- vpaths { ["*"] = "../../" }
- mpt_projectname = "updatesigntool"
- dofile "../../build/premake/premake-defaults-EXE.lua"
- dofile "../../build/premake/premake-defaults.lua"
- includedirs {
- "../../src",
- "../../common",
- "../../include",
- "../../include/nlohmann-json/include",
- "$(IntDir)/svn_version",
- "../../build/svn_version",
- }
- files {
- "../../src/mpt/**.cpp",
- "../../src/mpt/**.hpp",
- "../../src/openmpt/**.cpp",
- "../../src/openmpt/**.hpp",
- "../../common/*.cpp",
- "../../common/*.h",
- "../../misc/*.cpp",
- "../../misc/*.h",
- "../../installer/updatesigntool/*.cpp",
- "../../installer/updatesigntool/*.h",
- }
- excludes {
- "../../src/openmpt/sounddevice/**.cpp",
- "../../src/openmpt/sounddevice/**.hpp",
- }
- defines { "MODPLUG_TRACKER", "MPT_BUILD_UPDATESIGNTOOL" }
- largeaddressaware ( true )
- characterset "Unicode"
- warnings "Extra"
- filter {}
- prebuildcommands { "..\\..\\build\\svn_version\\update_svn_version_vs_premake.cmd $(IntDir)" }
|