Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- solution "opengl"
- configurations { "Debug", "Release" }
- project "bin/opengl"
- location "bin"
- kind "ConsoleApp"
- language "C++"
- files {
- "src/**.cpp",
- "src/**.h",
- "src/**.hpp"
- }
- configuration "windows"
- defines "WIN32"
- links { "glfw3", "opengl32", "gdi32", "glu32", "SOIL" }
- configuration "linux"
- links { "glfw", "GL", "SOIL" }
- configuration "Debug"
- targetsuffix "D"
- defines "DEBUG"
- flags { "Symbols", "ExtraWarnings", "FatalWarnings" }
- buildoptions { "-g" }
- configuration "Release"
- defines "NDEBUG"
- flags { "OptimizeSpeed", "NoFramePointer", "NoEditAndContinue" }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement