23 lines
419 B
Lua
23 lines
419 B
Lua
project "CppConsoleApp"
|
|
|
|
kind "ConsoleApp"
|
|
language "C++"
|
|
|
|
flags { "FatalWarnings", "ExtraWarnings" }
|
|
|
|
files { "*.h", "*.cpp" }
|
|
|
|
includedirs { "I:/Code" }
|
|
|
|
libdirs { "../lib" }
|
|
links { "CppSharedLib" }
|
|
|
|
pchheader "stdafx.h"
|
|
pchsource "stdafx.cpp"
|
|
|
|
configuration "Debug"
|
|
targetdir "../bin/debug (x64)"
|
|
links { "CppStaticLib" }
|
|
|
|
configuration "Release"
|
|
targetdir "../bin/release (x64)" |