From 982d619ba1c7dbb4dac26332d6929a934a7a5066 Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Tue, 8 Oct 2024 16:16:52 +0300 Subject: [PATCH] Add an empty .cpp file to make CMake generation pass. --- UnleashedRecompLib/CMakeLists.txt | 2 +- UnleashedRecompLib/main.cpp | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 UnleashedRecompLib/main.cpp diff --git a/UnleashedRecompLib/CMakeLists.txt b/UnleashedRecompLib/CMakeLists.txt index 89aebaa..18413f6 100644 --- a/UnleashedRecompLib/CMakeLists.txt +++ b/UnleashedRecompLib/CMakeLists.txt @@ -6,7 +6,7 @@ add_compile_options( "-fno-strict-aliasing") file(GLOB SWA_RECOMPILED_SOURCES "ppc/*.cpp") -add_library(UnleashedRecompLib ${SWA_RECOMPILED_SOURCES}) +add_library(UnleashedRecompLib "main.cpp" ${SWA_RECOMPILED_SOURCES}) target_include_directories(UnleashedRecompLib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) diff --git a/UnleashedRecompLib/main.cpp b/UnleashedRecompLib/main.cpp new file mode 100644 index 0000000..e69de29