From 0bbf55478171e769b109efabfddb638151095722 Mon Sep 17 00:00:00 2001 From: Xiao Qi Date: Sat, 4 Mar 2023 02:57:39 +0800 Subject: [PATCH] Commit for ease of test, TO BE REMOVED --- premake5.lua | 18 +++++++++--------- src/main.cpp | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/premake5.lua b/premake5.lua index 83a31e7..49b0525 100644 --- a/premake5.lua +++ b/premake5.lua @@ -1,14 +1,14 @@ AssimpInclude = "%{prj.location}\\Dependencies\\assimp" --- outputdir = "%{wks.location}/bin/%{cfg.buildcfg}" --- interdir = "%{wks.location}/bin_int" --- workspace "ModelCompile" --- architecture "x64" --- configurations --- { --- "Release", --- "Debug" --- } +outputdir = "%{wks.location}/bin/%{cfg.buildcfg}" +interdir = "%{wks.location}/bin_int" +workspace "ModelCompile" +architecture "x64" + configurations + { + "Release", + "Debug" + } project "ModelCompiler" kind "ConsoleApp" diff --git a/src/main.cpp b/src/main.cpp index b30b89a..0b90be0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,7 +18,7 @@ int main(int argc, char* argv[]) { std::vector paths; - #if 1 + #if 0 if (argc == 1) { @@ -57,7 +57,7 @@ int main(int argc, char* argv[]) } #else - SH_COMP::MeshCompiler::LoadAndCompile("MD_Homeowner-NoRig.gltf"); + SH_COMP::MeshCompiler::LoadAndCompile("racoon.gltf"); #endif return 0;