Commit for ease of test, TO BE REMOVED

This commit is contained in:
Xiao Qi 2023-03-04 02:57:39 +08:00
parent 7cba537fc9
commit 0bbf554781
2 changed files with 11 additions and 11 deletions

View File

@ -1,14 +1,14 @@
AssimpInclude = "%{prj.location}\\Dependencies\\assimp" AssimpInclude = "%{prj.location}\\Dependencies\\assimp"
-- outputdir = "%{wks.location}/bin/%{cfg.buildcfg}" outputdir = "%{wks.location}/bin/%{cfg.buildcfg}"
-- interdir = "%{wks.location}/bin_int" interdir = "%{wks.location}/bin_int"
-- workspace "ModelCompile" workspace "ModelCompile"
-- architecture "x64" architecture "x64"
-- configurations configurations
-- { {
-- "Release", "Release",
-- "Debug" "Debug"
-- } }
project "ModelCompiler" project "ModelCompiler"
kind "ConsoleApp" kind "ConsoleApp"

View File

@ -18,7 +18,7 @@ int main(int argc, char* argv[])
{ {
std::vector<std::string> paths; std::vector<std::string> paths;
#if 1 #if 0
if (argc == 1) if (argc == 1)
{ {
@ -57,7 +57,7 @@ int main(int argc, char* argv[])
} }
#else #else
SH_COMP::MeshCompiler::LoadAndCompile("MD_Homeowner-NoRig.gltf"); SH_COMP::MeshCompiler::LoadAndCompile("racoon.gltf");
#endif #endif
return 0; return 0;