From 2dd5f3a648cd74d8449a986573f4ddbe39acacb9 Mon Sep 17 00:00:00 2001 From: slinky55 Date: Wed, 13 May 2026 22:18:02 -0500 Subject: [PATCH] update cmakelists, added project manifest --- CMakeLists.txt | 2 +- src/ProjectManifest.h | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/ProjectManifest.h diff --git a/CMakeLists.txt b/CMakeLists.txt index d28305c..e571e4f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ add_subdirectory(_ThirdParty/glfw) add_subdirectory(_ThirdParty/spdlog) set (ASSIMP_INSTALL OFF) -if(CMAKE_SYSTEM_NAME STREQUAL "Linux") +if(UNIX) find_path(UNZIP_PATH unzip.h PATHS /usr/include /usr/local/include) diff --git a/src/ProjectManifest.h b/src/ProjectManifest.h new file mode 100644 index 0000000..ae33c18 --- /dev/null +++ b/src/ProjectManifest.h @@ -0,0 +1,13 @@ +// +// Created by lbmas on 5/13/2026. +// + +#ifndef B_ENGINE_PROJECTMANIFEST_H +#define B_ENGINE_PROJECTMANIFEST_H + +struct ProjectManifest +{ + +}; + +#endif //B_ENGINE_PROJECTMANIFEST_H