| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- --
- -- Copyright (c) 2012-2017 Daniele Bartolini and individual contributors.
- -- License: https://github.com/dbartolini/crown/blob/master/LICENSE
- --
- project "level-editor-imgui"
- kind "ConsoleApp"
- language "C++"
- includedirs {
- CROWN_DIR .. "src",
- CROWN_DIR .. "tools-imgui",
- CROWN_DIR .. "3rdparty",
- CROWN_DIR .. "3rdparty/bgfx/include",
- CROWN_DIR .. "3rdparty/bx/include",
- CROWN_DIR .. "3rdparty/stb",
- CROWN_DIR .. "3rdparty/luajit/src",
- CROWN_DIR .. "3rdparty/openal/include",
- CROWN_DIR .. "3rdparty/bullet3/src",
- CROWN_DIR .. "3rdparty/ocornut-imgui",
- }
- defines {
- "CROWN_TOOLS=1",
- "CROWN_PHYSICS_NOOP=1",
- }
- links {
- "bgfx",
- "bimg",
- "bx",
- "openal",
- "bullet",
- }
- configuration { "debug or development" }
- defines {
- "CROWN_DEBUG=1"
- }
- configuration { "development" }
- defines {
- "CROWN_DEVELOPMENT=1"
- }
- configuration { "linux-*" }
- links {
- "X11",
- "Xrandr",
- "pthread",
- "dl",
- "GL",
- "luajit",
- }
- configuration { "mingw*" }
- links {
- "dbghelp",
- "xinput",
- "psapi",
- "ws2_32",
- "ole32",
- "luajit"
- }
- configuration {}
- files {
- CROWN_DIR .. "src/**.h",
- CROWN_DIR .. "src/**.cpp",
- CROWN_DIR .. "tools-imgui/**.h",
- CROWN_DIR .. "tools-imgui/**.cpp",
- CROWN_DIR .. "3rdparty/ocornut-imgui/*.h",
- CROWN_DIR .. "3rdparty/ocornut-imgui/*.cpp",
- }
- configuration {} -- reset configuration
|