Skip to content

Commit

Permalink
switch from g++ to Cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
ACCESS-DENIIED committed Dec 19, 2024
1 parent 5891cb2 commit c02f265
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit c02f265

Please sign in to comment.