Skip to content

Instantly share code, notes, and snippets.

@devknoll
Created November 25, 2012 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devknoll/4144753 to your computer and use it in GitHub Desktop.
Save devknoll/4144753 to your computer and use it in GitHub Desktop.
project "Cabal"
language "C++"
kind "ConsoleApp"
files { "**.h", "**.inl", "**.cpp", "**.c" }
links { "Game", "ppapi_gles2", "ppapi" }
includedirs { "" }
targetextension ".pexe"
project "Game"
language "C++"
kind "StaticLib"
files { "**.h", "**.inl", "**.cpp", "**.c" }
solution "Game"
location "workspace/"
configurations { "Debug", "Development", "Release" }
configuration "not emscripten"
excludes { "**/Emscripten/**" }
includedirs { "" }
buildoptions { "-std=gnu++11", "-O0" }
linkoptions { "-O0" }
configuration "Debug"
defines { "CABAL_DEBUG=1" }
targetdir "workspace/bin/Debug"
flags { "Symbols", "ExtraWarnings" }
configuration "Development"
defines { "CABAL_DEVELOPMENT=1" }
targetdir "workspace/bin/Development"
flags { "Symbols" }
configuration "Release"
defines { "CABAL_RELEASE=1" }
targetdir "workspace/bin/Release"
flags { "Optimize" }
include "Game"
include "Cabal"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment