Editor console basics and more dependencies

Added basics of an editor console, Added YAML-CPP as a dependency of the editor , Added NativeFileDialog as a dependency
This commit is contained in:
2022-11-05 12:29:50 +01:00
parent b44c88d05c
commit 41d5b87c7b
13 changed files with 143 additions and 8 deletions

13
yaml-cpp/premake5.lua Normal file
View File

@ -0,0 +1,13 @@
project "yaml-cpp"
kind "StaticLib"
buildmessage "Building YAML parser ..."
includedirs{
"../libs/yaml-cpp/include"
}
files{
"../libs/yaml-cpp/src/*.h",
"../libs/yaml-cpp/src/*.cpp"
}