| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- --
- -- Copyright (c) 2012-2016 Daniele Bartolini and individual contributors.
- -- License: https://github.com/taylor001/crown/blob/master/LICENSE
- --
- local CROWN_DIR = (path.getabsolute("..") .. "/")
- local CROWN_BUILD_DIR = (CROWN_DIR .. "build/")
- local CROWN_TOOLS_DIR = (CROWN_BUILD_DIR .. "tools/")
- solution "tools"
- language "Vala"
- configurations {
- "debug",
- "release",
- }
- -- FIXME: Fix this in GENie
- premake.valac.valac = premake.valac.valac .. " --gresources=" .. CROWN_DIR .. "tools/ui/resources.xml" .. " --target-glib=2.38"
- location(CROWN_TOOLS_DIR .. "projects/")
- targetdir(CROWN_TOOLS_DIR)
- configuration { "debug" }
- targetsuffix "-debug"
- project "level-editor"
- kind "ConsoleApp"
- configuration { "debug" }
- flags {
- "Symbols",
- }
- defines {
- "CROWN_DEBUG",
- }
- configuration { "release" }
- flags {
- "Optimize"
- }
- configuration { "linux" }
- defines {
- "CROWN_PLATFORM_LINUX"
- }
- configuration { "windows" }
- defines {
- "CROWN_PLATFORM_WINDOWS"
- }
- configuration {}
- links {
- "gdk-3.0",
- "gee-0.8",
- "gio-2.0",
- "glib-2.0",
- "gtk+-3.0",
- "posix",
- }
- buildoptions {
- "-lm",
- "-Wno-deprecated-declarations",
- "-Wno-incompatible-pointer-types",
- "-Wno-discarded-qualifiers",
- }
- files {
- CROWN_DIR .. "tools/**.vala",
- CROWN_DIR .. "tools/ui/resources.c",
- }
- configuration {}
|