From c02f2652ecee06395b906203a9bd642b1271aa2e Mon Sep 17 00:00:00 2001 From: ACCESSDENIIED <100420164+ACCESS-DENIIED@users.noreply.github.com> Date: Thu, 19 Dec 2024 19:40:56 +0000 Subject: [PATCH] switch from g++ to Cmake --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..40bca5d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.10) + +# Set the project name +project(SpiderVerseExtended) + +# Specify the C++ standard +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED True) + +# Create the shared library +add_library(amd_ags_x64 SHARED Spider-Verse-Extended.cpp) \ No newline at end of file