Name Changing

This commit is contained in:
Colton Staiduhar
2026-03-25 16:46:22 -04:00
parent 6aba4de2f0
commit a4f8748572
2 changed files with 5 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
#set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Release>:Release>") #set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Release>:Release>")
# Declare Project where "GSM_TEMPLATE" is the project name # Declare Project where "GSM_TEMPLATE" is the project name
project(Assignment2 LANGUAGES C CXX) project(GSM_TEMPLATE LANGUAGES C CXX)
# Use FreeGlut on Macos (Requires X11 to be installed, but doesn't use it) # Use FreeGlut on Macos (Requires X11 to be installed, but doesn't use it)
option(USE_FREEGLUT "Use FreeGLUT on Mac (ignored on Windows)" ON) option(USE_FREEGLUT "Use FreeGLUT on Mac (ignored on Windows)" ON)

View File

@@ -1,5 +1,9 @@
# GlutSTBMiniAudio-Template # GlutSTBMiniAudio-Template
## Changing the Project Name
In the CMakeLists.txt file, find line 11 (`project(GSM_TEMPLATE LANGUAGES C CXX)`) and replace "GSM_TEMPLATE" with whatever you'd like
## Setup ## Setup
### For Windows ### For Windows