| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698 |
- -- Copyright (c) 2013 - 2014 Daniele Bartolini, Michele Rossi
- -- Copyright (c) 2012 Daniele Bartolini, Simone Boscaratto
- --
- -- Permission is hereby granted, free of charge, to any person
- -- obtaining a copy of this software and associated documentation
- -- files (the "Software"), to deal in the Software without
- -- restriction, including without limitation the rights to use,
- -- copy, modify, merge, publish, distribute, sublicense, and/or sell
- -- copies of the Software, and to permit persons to whom the
- -- Software is furnished to do so, subject to the following
- -- conditions:
- --
- -- The above copyright notice and this permission notice shall be
- -- included in all copies or substantial portions of the Software.
- --
- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- -- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- -- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- -- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- -- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- -- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- -- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- -- OTHER DEALINGS IN THE SOFTWARE.
- ------------------------------------------------------------------------------
- -- Options
- newoption
- {
- trigger = "install-dir",
- value = "DIR",
- description = "Output directory"
- }
- newoption
- {
- trigger = "compiler",
- value = "COMPILER",
- description = "Choose compiler",
- allowed =
- {
- { "android", "Android (ARM only)" }, -- gcc
- { "linux-gcc", "Linux (GCC compiler)" }, -- gcc
- }
- }
- CROWN_SOURCE_DIR = path.getabsolute("..") .. "/"
- CROWN_THIRD_DIR = CROWN_SOURCE_DIR .. "third/"
- CROWN_BUILD_DIR = CROWN_SOURCE_DIR .. ".build/"
- CROWN_INSTALL_DIR = os.getenv("CROWN_INSTALL_DIR")
- if not CROWN_INSTALL_DIR then
- if not path.isabsolute(CROWN_INSTALL_DIR) then
- CROWN_INSTALL_DIR = CROWN_SOURCE_DIR .. ".install"
- end
- end
- CROWN_INSTALL_DIR = CROWN_INSTALL_DIR .. "/" -- Add slash to end string
- -------------------------------------------------------------------------------
- -- Solution
- solution "crown"
- configurations { "debug", "development", "release" }
- platforms { "x32", "x64", "native" }
- -- Avoid error invoking premake4 --help
- if _ACTION == nil then return end
- if _ACTION == "clean" then os.rmdir(CROWN_BUILD_DIR) end
- if _ACTION == "gmake" then
- if _OPTIONS["compiler"] == "linux-gcc" then
- if not os.is("linux") then print("Action not valid in current OS.") end
- if not os.getenv("PHYSX_SDK_LINUX") then
- print("Set PHYSX_SDK_LINUX environment variable.")
- end
- location(CROWN_BUILD_DIR .. "linux")
- elseif _OPTIONS["compiler"] == "android" then
- if not os.getenv("ANDROID_NDK_ROOT") then
- print("Set ANDROID_NDK_ROOT environment variable.")
- end
- if not os.getenv("ANDROID_NDK_ARM") then
- print("Set ANDROID_NDK_ARM environment variables.")
- end
- if not os.getenv("PHYSX_SDK_ANDROID") then
- print("Set PHYSX_SDK_ANDROID environment variable.")
- end
- premake.gcc.cc = "$(ANDROID_NDK_ARM)/bin/arm-linux-androideabi-gcc"
- premake.gcc.cxx = "$(ANDROID_NDK_ARM)/bin/arm-linux-androideabi-g++"
- premake.gcc.ar = "$(ANDROID_NDK_ARM)/bin/arm-linux-androideabi-ar"
- location(CROWN_BUILD_DIR .. "android")
- end
- end
- if _ACTION == "vs2012" then
- if not os.is("windows") then print("Action not valid in current OS.") end
- if not os.getenv("PHYSX_SDK_WINDOWS") then
- print("Set PHYSX_SDK_WINDOWS environment variable.")
- end
- if not os.getenv("DXSDK_DIR") then
- print("Set DXSDK_DIR environment variable.")
- end
- location(CROWN_BUILD_DIR .. "windows")
- end
- flags {
- "StaticRuntime",
- "NoMinimalRebuild",
- "NoPCH",
- "NoRTTI",
- "NoExceptions",
- "NoEditAndContinue",
- }
- configuration { "debug" }
- flags { "Symbols" }
- defines { "_DEBUG", "CROWN_DEBUG" }
- configuration { "development" }
- flags { "Symbols" }
- defines { "_DEBUG", "CROWN_DEBUG" }
- configuration { "release" }
- defines { "NDEBUG" }
- configuration { "debug", "x32" }
- targetsuffix "-debug-32"
- configuration { "debug", "x64" }
- targetsuffix "-debug-64"
- configuration { "development", "x32" }
- targetsuffix "-development-32"
- configuration { "development", "x64" }
- targetsuffix "-development-64"
- configuration { "release", "x32" }
- targetsuffix "-release-32"
- configuration { "release", "x64" }
- targetsuffix "-release-64"
- configuration { "debug", "native" }
- targetsuffix "-debug"
- configuration { "development", "native" }
- targetsuffix "-development"
- configuration { "release", "native" }
- targetsuffix "-release"
- -------------------------------------------------------------------------------
- project "crown"
- language "C++"
- includedirs {
- CROWN_SOURCE_DIR .. "/engine",
- CROWN_SOURCE_DIR .. "/engine/core",
- CROWN_SOURCE_DIR .. "/engine/core/containers",
- CROWN_SOURCE_DIR .. "/engine/core/filesystem",
- CROWN_SOURCE_DIR .. "/engine/core/json",
- CROWN_SOURCE_DIR .. "/engine/core/math",
- CROWN_SOURCE_DIR .. "/engine/core/memory",
- CROWN_SOURCE_DIR .. "/engine/core/network",
- CROWN_SOURCE_DIR .. "/engine/core/settings",
- CROWN_SOURCE_DIR .. "/engine/core/strings",
- CROWN_SOURCE_DIR .. "/engine/core/thread",
- CROWN_SOURCE_DIR .. "/engine/main",
- CROWN_SOURCE_DIR .. "/engine/input",
- CROWN_SOURCE_DIR .. "/engine/renderers",
- CROWN_SOURCE_DIR .. "/engine/resource",
- CROWN_SOURCE_DIR .. "/engine/lua",
- CROWN_SOURCE_DIR .. "/engine/audio",
- CROWN_SOURCE_DIR .. "/engine/compilers",
- CROWN_SOURCE_DIR .. "/engine/physics",
- CROWN_SOURCE_DIR .. "/engine/world"
- }
- files {
- CROWN_SOURCE_DIR .. "engine/**.h",
- CROWN_SOURCE_DIR .. "engine/**.cpp"
- }
- configuration { "linux-*" }
- kind "ConsoleApp"
- buildoptions {
- "-std=c++03",
- "-Wall",
- -- "-Wextra",
- -- "-Werror",
- -- "-pedantic",
- "-Wno-unknown-pragmas",
- "-Wno-unused-local-typedefs"
- }
-
- linkoptions {
- "-Wl,-rpath=\\$$ORIGIN",
- "-Wl,--no-as-needed"
- }
- links {
- "Xrandr",
- "pthread",
- "GL",
- "X11",
- "openal",
- "luajit",
- "dl",
- }
- includedirs {
- CROWN_THIRD_DIR .. "luajit/src",
- CROWN_THIRD_DIR .. "openal/include",
- CROWN_THIRD_DIR .. "freetype",
- CROWN_THIRD_DIR .. "stb_image",
- CROWN_THIRD_DIR .. "stb_vorbis",
- CROWN_THIRD_DIR .. "bgfx/src",
- CROWN_THIRD_DIR .. "bgfx/include",
- CROWN_THIRD_DIR .. "bx/include",
- "$(PHYSX_SDK_LINUX)/Include",
- "$(PHYSX_SDK_LINUX)/Include/common",
- "$(PHYSX_SDK_LINUX)/Include/characterkinematic",
- "$(PHYSX_SDK_LINUX)/Include/cloth",
- "$(PHYSX_SDK_LINUX)/Include/common",
- "$(PHYSX_SDK_LINUX)/Include/cooking",
- "$(PHYSX_SDK_LINUX)/Include/extensions",
- "$(PHYSX_SDK_LINUX)/Include/foundation",
- "$(PHYSX_SDK_LINUX)/Include/geometry",
- "$(PHYSX_SDK_LINUX)/Include/particles",
- "$(PHYSX_SDK_LINUX)/Include/physxprofilesdk",
- "$(PHYSX_SDK_LINUX)/Include/physxvisualdebuggersdk",
- "$(PHYSX_SDK_LINUX)/Include/pvd",
- "$(PHYSX_SDK_LINUX)/Include/pxtask",
- "$(PHYSX_SDK_LINUX)/Include/RepX",
- "$(PHYSX_SDK_LINUX)/Include/RepXUpgrader",
- "$(PHYSX_SDK_LINUX)/Include/vehicle",
- }
-
- configuration { "linux-*", "debug" }
- buildoptions {
- "-O0"
- }
- links {
- "bgfxDebug"
- }
- linkoptions {
- "-rdynamic",
- "-Wl,--start-group $(addprefix -l," ..
- " LowLevelClothCHECKED" ..
- " PhysX3CHECKED " ..
- " PhysX3CommonCHECKED" ..
- " PxTaskCHECKED" ..
- " LowLevelCHECKED" ..
- " PhysX3CharacterKinematicCHECKED" ..
- " PhysX3CookingCHECKED" ..
- " PhysX3ExtensionsCHECKED" ..
- " PhysX3VehicleCHECKED" ..
- " PhysXProfileSDKCHECKED" ..
- " PhysXVisualDebuggerSDKCHECKED" ..
- " PvdRuntimeCHECKED" ..
- " SceneQueryCHECKED" ..
- " SimulationControllerCHECKED" ..
- ") -Wl,--end-group"
- }
- configuration { "linux-*", "development" }
- buildoptions {
- "-O2"
- }
- links {
- "bgfxDebug"
- }
- linkoptions
- {
- "-rdynamic",
- "-Wl,--start-group $(addprefix -l," ..
- " LowLevelClothPROFILE" ..
- " PhysX3PROFILE " ..
- " PhysX3CommonPROFILE" ..
- " PxTaskPROFILE" ..
- " LowLevelPROFILE" ..
- " PhysX3CharacterKinematicPROFILE" ..
- " PhysX3CookingPROFILE" ..
- " PhysX3ExtensionsPROFILE" ..
- " PhysX3VehiclePROFILE" ..
- " PhysXProfileSDKPROFILE" ..
- " PhysXVisualDebuggerSDKPROFILE" ..
- " PvdRuntimePROFILE" ..
- " SceneQueryPROFILE" ..
- " SimulationControllerPROFILE" ..
- ") -Wl,--end-group"
- }
- configuration { "linux-*", "release" }
- buildoptions {
- "-O2"
- }
- links {
- "bgfxRelease"
- }
- linkoptions {
- "-Wl,--start-group $(addprefix -l," ..
- " LowLevelCloth" ..
- " PhysX3 " ..
- " PhysX3Common" ..
- " PxTask" ..
- " LowLevel" ..
- " PhysX3CharacterKinematic" ..
- " PhysX3Cooking" ..
- " PhysX3Extensions" ..
- " PhysX3Vehicle" ..
- " PhysXProfileSDK" ..
- " PhysXVisualDebuggerSDK" ..
- " PvdRuntime" ..
- " SceneQuery" ..
- " SimulationController" ..
- ") -Wl,--end-group"
- }
- configuration { "linux-*", "x32" }
- targetdir(CROWN_INSTALL_DIR .. "bin/linux32")
-
- buildoptions {
- "-malign-double" -- Required by PhysX
- }
- libdirs {
- CROWN_THIRD_DIR .. "luajit/src",
- CROWN_THIRD_DIR .. "bgfx/.build/linux32_gcc/bin",
- "$(PHYSX_SDK_LINUX)/Lib/linux32"
- }
- postbuildcommands {
- "cp " .. CROWN_THIRD_DIR .. "luajit/src/luajit " .. CROWN_INSTALL_DIR .. "bin/linux32/",
- "cp " .. CROWN_THIRD_DIR .. "luajit/src/jit " .. CROWN_INSTALL_DIR .. "bin/linux32/" .. " -r",
- }
- configuration { "linux-*", "x64" }
- targetdir(CROWN_INSTALL_DIR .. "bin/linux64")
- libdirs {
- CROWN_THIRD_DIR .. "luajit/src",
- CROWN_THIRD_DIR .. "bgfx/.build/linux64_gcc/bin",
- "$(PHYSX_SDK_LINUX)/Lib/linux64"
- }
- postbuildcommands {
- "cp " .. CROWN_THIRD_DIR .. "luajit/src/luajit " .. CROWN_INSTALL_DIR .. "bin/linux64/",
- "cp " .. CROWN_THIRD_DIR .. "luajit/src/jit " .. CROWN_INSTALL_DIR .. "bin/linux64/" .. " -r",
- }
- configuration { "debug or development", "x32", "linux-*" }
- postbuildcommands {
- "cp " .. CROWN_THIRD_DIR .. "bgfx/.build/linux32_gcc/bin/shadercDebug " .. CROWN_INSTALL_DIR .. "bin/linux32/shaderc"
- }
- configuration { "release", "x32", "linux-*" }
- postbuildcommands {
- "cp " .. CROWN_THIRD_DIR .. "bgfx/.build/linux32_gcc/bin/shadercRelease " .. CROWN_INSTALL_DIR .. "bin/linux32/shaderc"
- }
- configuration { "debug or development", "x64", "linux-*" }
- postbuildcommands {
- "cp " .. CROWN_THIRD_DIR .. "bgfx/.build/linux64_gcc/bin/shadercDebug " .. CROWN_INSTALL_DIR .. "bin/linux64/shaderc"
- }
- configuration { "release", "x64", "linux-*" }
- postbuildcommands {
- "cp " .. CROWN_THIRD_DIR .. "bgfx/.build/linux64_gcc/bin/shadercRelease " .. CROWN_INSTALL_DIR .. "bin/linux64/shaderc"
- }
- configuration { "android" }
- kind "ConsoleApp"
- targetprefix "lib"
- targetextension ".so"
- targetdir(CROWN_INSTALL_DIR .. "bin/android") -- must be specified by user -- tmp
- flags { "NoImportLib" }
- defines {
- "__STDC_FORMAT_MACROS",
- "__STDC_CONSTANT_MACROS",
- "__STDC_LIMIT_MACROS"
- }
- buildoptions {
- "--sysroot=$(ANDROID_NDK_ROOT)/platforms/android-14/arch-arm",
- "-ffunction-sections",
- "-fPIC",
- "-march=armv7-a",
- "-mfloat-abi=softfp",
- "-mthumb",
- "-no-canonical-prefixes",
- "-std=c++03",
- "-Wno-psabi", -- note: the mangling of 'va_list' has changed in GCC 4.4.0
- "-no-canonical-prefixes",
- "-fstack-protector",
- "-mfpu=neon",
- "-Wa,--noexecstack",
- }
-
- linkoptions {
- "-shared",
- "-nostdlib",
- "-static-libgcc",
- "--sysroot=$(ANDROID_NDK_ROOT)/platforms/android-14/arch-arm",
- "$(ANDROID_NDK_ROOT)/platforms/android-14/arch-arm/usr/lib/crtbegin_so.o",
- "$(ANDROID_NDK_ROOT)/platforms/android-14/arch-arm/usr/lib/crtend_so.o",
- "-no-canonical-prefixes",
- "-Wl,--no-undefined",
- "-Wl,-z,noexecstack",
- "-Wl,-z,relro",
- "-Wl,-z,now",
- "-march=armv7-a",
- "-Wl,--fix-cortex-a8",
- }
- links {
- ":libluajit.a",
- "android",
- "c",
- "dl",
- "EGL",
- "gcc",
- "GLESv2",
- "gnustl_static",
- "log",
- "m",
- "OpenSLES"
- }
- includedirs {
- CROWN_THIRD_DIR .. "luajit/src",
- CROWN_THIRD_DIR .. "bgfx/include",
- CROWN_THIRD_DIR .. "bx/include",
- CROWN_THIRD_DIR .. "openal/include",
- CROWN_THIRD_DIR .. "freetype",
- CROWN_THIRD_DIR .. "stb_image",
- CROWN_THIRD_DIR .. "stb_vorbis",
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/gnu-libstdc++/4.8/include",
- "$(ANDROID_NDK_ROOT)/sources/android/native_app_glue",
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include",
- "$(PHYSX_SDK_ANDROID)/Include",
- "$(PHYSX_SDK_ANDROID)/Include/common",
- "$(PHYSX_SDK_ANDROID)/Include/characterkinematic",
- "$(PHYSX_SDK_ANDROID)/Include/cloth",
- "$(PHYSX_SDK_ANDROID)/Include/common",
- "$(PHYSX_SDK_ANDROID)/Include/cooking",
- "$(PHYSX_SDK_ANDROID)/Include/extensions",
- "$(PHYSX_SDK_ANDROID)/Include/foundation",
- "$(PHYSX_SDK_ANDROID)/Include/geometry",
- "$(PHYSX_SDK_ANDROID)/Include/particles",
- "$(PHYSX_SDK_ANDROID)/Include/physxprofilesdk",
- "$(PHYSX_SDK_ANDROID)/Include/physxvisualdebuggersdk",
- "$(PHYSX_SDK_ANDROID)/Include/pvd",
- "$(PHYSX_SDK_ANDROID)/Include/pxtask",
- "$(PHYSX_SDK_ANDROID)/Include/RepX",
- "$(PHYSX_SDK_ANDROID)/Include/RepXUpgrader",
- "$(PHYSX_SDK_ANDROID)/Include/vehicle",
- }
- libdirs {
- CROWN_THIRD_DIR .. "luajit/src",
- CROWN_THIRD_DIR .. "bgfx/.build/android-arm/bin",
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a",
- "$(ANDROID_NDK_ROOT)/platforms/android-14/arch-arm/usr/lib",
- "$(PHYSX_SDK_ANDROID)/Lib/android9_neon",
- }
- configuration { "debug", "android" }
- links {
- ":libbgfxDebug.a",
- }
- linkoptions {
- "-Wl,--start-group $(addprefix -l," ..
- " LowLevelCloth" ..
- " PhysX3 " ..
- " PhysX3Common" ..
- " PxTask" ..
- " LowLevel" ..
- " PhysX3CharacterKinematic" ..
- " PhysX3Cooking" ..
- " PhysX3Extensions" ..
- " PhysX3Vehicle" ..
- " PhysXProfileSDK" ..
- " PhysXVisualDebuggerSDK" ..
- " PvdRuntime" ..
- " SceneQuery" ..
- " SimulationController" ..
- ") -Wl,--end-group"
- }
- configuration { "development", "android"}
- links {
- ":libbgfxDebug.a",
- }
- linkoptions {
- "-Wl,--start-group $(addprefix -l," ..
- " LowLevelCloth" ..
- " PhysX3 " ..
- " PhysX3Common" ..
- " PxTask" ..
- " LowLevel" ..
- " PhysX3CharacterKinematic" ..
- " PhysX3Cooking" ..
- " PhysX3Extensions" ..
- " PhysX3Vehicle" ..
- " PhysXProfileSDK" ..
- " PhysXVisualDebuggerSDK" ..
- " PvdRuntime" ..
- " SceneQuery" ..
- " SimulationController" ..
- ") -Wl,--end-group"
- }
- configuration { "release", "android"}
- links {
- ":libbgfxRelease.a",
- }
- linkoptions {
- "-Wl,--start-group $(addprefix -l," ..
- " LowLevelCloth" ..
- " PhysX3 " ..
- " PhysX3Common" ..
- " PxTask" ..
- " LowLevel" ..
- " PhysX3CharacterKinematic" ..
- " PhysX3Cooking" ..
- " PhysX3Extensions" ..
- " PhysX3Vehicle" ..
- " PhysXProfileSDK" ..
- " PhysXVisualDebuggerSDK" ..
- " PvdRuntime" ..
- " SceneQuery" ..
- " SimulationController" ..
- ") -Wl,--end-group"
- }
- configuration { "vs*" }
- kind "ConsoleApp"
- targetdir (CROWN_INSTALL_DIR .. "windows")
- linkoptions {
- "/ignore:4199", -- LNK4199: /DELAYLOAD:*.dll ignored; no imports found from *.dll
- "/ignore:4221", -- LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
- }
- defines {
- "WIN32",
- "_WIN32",
- "_HAS_EXCEPTIONS=0",
- "_HAS_ITERATOR_DEBUGGING=0",
- "_SCL_SECURE=0",
- "_SECURE_SCL=0",
- "_SCL_SECURE_NO_WARNINGS",
- "_CRT_SECURE_NO_WARNINGS",
- "_CRT_SECURE_NO_DEPRECATE"
- }
- buildoptions {
- "/Oy-", -- Suppresses creation of frame pointers on the call stack.
- "/Ob2", -- The Inline Function Expansion
- }
- links {
- "OpenGL32",
- "lua51",
- "OpenAL32",
- "dbghelp"
- }
- includedirs {
- CROWN_SOURCE_DIR .. "core/compat/msvc",
- CROWN_THIRD_DIR .. "luajit/src",
- CROWN_THIRD_DIR .. "openal/include",
- CROWN_THIRD_DIR .. "freetype",
- CROWN_THIRD_DIR .. "stb_image",
- CROWN_THIRD_DIR .. "stb_vorbis",
- CROWN_THIRD_DIR .. "bgfx/src",
- CROWN_THIRD_DIR .. "bgfx/include",
- CROWN_THIRD_DIR .. "bx/include",
- "$(PHYSX_SDK_WINDOWS)/Include",
- "$(PHYSX_SDK_WINDOWS)/Include/common",
- "$(PHYSX_SDK_WINDOWS)/Include/characterkinematic",
- "$(PHYSX_SDK_WINDOWS)/Include/cloth",
- "$(PHYSX_SDK_WINDOWS)/Include/common",
- "$(PHYSX_SDK_WINDOWS)/Include/cooking",
- "$(PHYSX_SDK_WINDOWS)/Include/extensions",
- "$(PHYSX_SDK_WINDOWS)/Include/foundation",
- "$(PHYSX_SDK_WINDOWS)/Include/geometry",
- "$(PHYSX_SDK_WINDOWS)/Include/particles",
- "$(PHYSX_SDK_WINDOWS)/Include/physxprofilesdk",
- "$(PHYSX_SDK_WINDOWS)/Include/physxvisualdebuggersdk",
- "$(PHYSX_SDK_WINDOWS)/Include/pvd",
- "$(PHYSX_SDK_WINDOWS)/Include/pxtask",
- "$(PHYSX_SDK_WINDOWS)/Include/RepX",
- "$(PHYSX_SDK_WINDOWS)/Include/RepXUpgrader",
- "$(PHYSX_SDK_WINDOWS)/Include/vehicle",
- "$(DXSDK_DIR)/Include",
- }
- configuration { "x32", "vs*" }
- libdirs {
- CROWN_THIRD_DIR .. "luajit/src",
- CROWN_THIRD_DIR .. "openal/lib",
- CROWN_THIRD_DIR .. "bgfx/.build/win32_vs2012/bin",
- "$(PHYSX_SDK_WINDOWS)/Lib/win32",
- "$(DXSDK_DIR)/Lib/x86",
- }
- configuration { "x64", "vs*" }
- defines { "_WIN64" }
- libdirs {
- CROWN_THIRD_DIR .. "luajit/src",
- CROWN_THIRD_DIR .. "openal/lib",
- CROWN_THIRD_DIR .. "bgfx/.build/win64_vs2012/bin",
- "$(PHYSX_SDK_WINDOWS)/Lib/win64",
- "$(DXSDK_DIR)/Lib/x64",
- }
- configuration { "debug", "x32", "vs*"}
- links {
- "PhysX3CharacterKinematicCHECKED_x86",
- "PhysX3CHECKED_x86",
- "PhysX3CommonCHECKED_x86",
- "PhysX3CookingCHECKED_x86",
- "PhysX3ExtensionsCHECKED",
- "bgfxDebug"
- }
- configuration { "debug", "x64", "vs*" }
- links {
- "PhysX3CharacterKinematicCHECKED_x64",
- "PhysX3CHECKED_x64",
- "PhysX3CommonCHECKED_x64",
- "PhysX3CookingCHECKED_x64",
- "PhysX3ExtensionsCHECKED",
- "bgfxDebug"
- }
- configuration { "development", "x32", "vs*" }
- links {
- "PhysX3CharacterKinematicPROFILE_x86",
- "PhysX3PROFILE_x86",
- "PhysX3CommonPROFILE_x86",
- "PhysX3CookingPROFILE_x86",
- "PhysX3ExtensionsPROFILE",
- "bgfxDebug"
- }
- configuration { "development", "x64", "vs*" }
- links {
- "PhysX3CharacterKinematicPROFILE_x64",
- "PhysX3PROFILE_x64",
- "PhysX3CommonPROFILE_x64",
- "PhysX3CookingPROFILE_x64",
- "PhysX3ExtensionsPROFILE",
- "bgfxDebug"
- }
- configuration { "release", "x32", "vs*" }
- links {
- "PhysX3CharacterKinematic_x86",
- "PhysX3_x86",
- "PhysX3Common_x86",
- "PhysX3Cooking_x86",
- "PhysX3Extensions",
- "bgfxRelease"
- }
-
- configuration { "release", "x64", "vs*" }
- links {
- "PhysX3CharacterKinematic_x64",
- "PhysX3_x64",
- "PhysX3Common_x64",
- "PhysX3Cooking_x64",
- "PhysX3Extensions",
- "bgfxRelease"
- }
|