Create c++ project

This commit is contained in:
Guilherme Werner
2023-12-01 21:19:37 -03:00
parent 482662b7bd
commit 64c60a294c
24 changed files with 9882 additions and 32 deletions

32
premake5.lua Normal file
View File

@ -0,0 +1,32 @@
--- @diagnostic disable: undefined-global
workspace "SDK-CPP"
location "."
configurations { "debug", "release" }
if _ACTION == "vs2022" then
platforms {
"windows-aarch64",
"windows-i686",
"windows-x86_64",
}
end
if _ACTION == "gmake2" then
platforms {
"linux-aarch64",
"linux-i686",
"linux-x86_64",
}
end
if _ACTION == "xcode4" then
platforms {
"mac-aarch64",
"mac-x86_64",
}
end
include "src"
include "examples"