Skip to content

Commit 1d67dea

Browse files
Rename FNFestClone to Encore
1 parent f875f4d commit 1d67dea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+17
-44
lines changed

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
.idea/
33
CMakeFiles/
44
out
5-
FNFestClone/Songs/*
6-
!FNFestClone/Songs/Synthfox Soundworks - Untitled Chords Thing/
7-
!FNFestClone/Songs/Synthfox Soundworks - Untitled Chords Thing/*
5+
Encore/Songs/*
6+
!Encore/Songs/Synthfox Soundworks - Untitled Chords Thing/
7+
!Encore/Songs/Synthfox Soundworks - Untitled Chords Thing/*

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if (POLICY CMP0141)
99
set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "$<IF:$<AND:$<C_COMPILER_ID:MSVC>,$<CXX_COMPILER_ID:MSVC>>,$<$<CONFIG:Debug,RelWithDebInfo>:EditAndContinue>,$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase>>")
1010
endif()
1111

12-
project ("FNFestClone" LANGUAGES C CXX)
12+
project ("Encore" LANGUAGES C CXX)
1313

1414
# Include sub-projects.
15-
add_subdirectory ("FNFestClone")
15+
add_subdirectory ("Encore")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

FNFestClone/CMakeLists.txt Encore/CMakeLists.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CMakeList.txt : CMake project for FNFestClone, include source and define
1+
# CMakeList.txt : CMake project for Encore, include source and define
22
# project specific logic here.
33
#
44

@@ -29,11 +29,11 @@ endif()
2929
file(GLOB_RECURSE SRC_FILES "src/*.cpp")
3030
file(GLOB_RECURSE INC_FILES "include/*.h" "src/*.h")
3131
# Add source files to the executable
32-
add_executable(FNFestClone ${SRC_FILES} ${INC_FILES})
33-
file(COPY "Songs" DESTINATION ${CMAKE_BINARY_DIR}/FNFestClone)
34-
file(COPY "Assets" DESTINATION ${CMAKE_BINARY_DIR}/FNFestClone)
32+
add_executable(Encore ${SRC_FILES} ${INC_FILES})
33+
file(COPY "Songs" DESTINATION ${CMAKE_BINARY_DIR}/Encore)
34+
file(COPY "Assets" DESTINATION ${CMAKE_BINARY_DIR}/Encore)
3535
# Set the include directory for the executable
36-
target_include_directories(FNFestClone PRIVATE "include")
36+
target_include_directories(Encore PRIVATE "include")
3737
# Link against the DLLs in the lib directory
38-
target_link_libraries(FNFestClone raylib)
38+
target_link_libraries(Encore raylib)
3939
# TODO: Add tests and install targets if needed.

FNFestClone/build/CMakeCache.txt Encore/build/CMakeCache.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This is the CMakeCache file.
2-
# For build in directory: c:/Users/marie/Documents/GitHub/Encore/FNFestClone/build
2+
# For build in directory: c:/Users/marie/Documents/GitHub/Encore/Encore/build
33
# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe
44
# You can edit this file to change values found and used by cmake.
55
# If you do not want to change any of the values, simply exit the editor.
@@ -19,7 +19,7 @@
1919
CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4
2020

2121
//Value Computed by CMake.
22-
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/marie/Documents/GitHub/Encore/FNFestClone/build/CMakeFiles/pkgRedirects
22+
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/marie/Documents/GitHub/Encore/Encore/build/CMakeFiles/pkgRedirects
2323

2424
//Program used to build from makefiles.
2525
CMAKE_MAKE_PROGRAM:STRING=nmake
@@ -40,21 +40,21 @@ EXECUTABLE_OUTPUT_PATH:PATH=
4040
LIBRARY_OUTPUT_PATH:PATH=
4141

4242
//Value Computed by CMake
43-
Project_BINARY_DIR:STATIC=C:/Users/marie/Documents/GitHub/Encore/FNFestClone/build
43+
Project_BINARY_DIR:STATIC=C:/Users/marie/Documents/GitHub/Encore/Encore/build
4444

4545
//Value Computed by CMake
4646
Project_IS_TOP_LEVEL:STATIC=ON
4747

4848
//Value Computed by CMake
49-
Project_SOURCE_DIR:STATIC=C:/Users/marie/Documents/GitHub/Encore/FNFestClone
49+
Project_SOURCE_DIR:STATIC=C:/Users/marie/Documents/GitHub/Encore/Encore
5050

5151

5252
########################
5353
# INTERNAL cache entries
5454
########################
5555

5656
//This is the directory where this CMakeCache.txt was created
57-
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/marie/Documents/GitHub/Encore/FNFestClone/build
57+
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/marie/Documents/GitHub/Encore/Encore/build
5858
//Major version of cmake used to create the current loaded cache
5959
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
6060
//Minor version of cmake used to create the current loaded cache
@@ -81,7 +81,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
8181
CMAKE_GENERATOR_TOOLSET:INTERNAL=
8282
//Source directory with the top level CMakeLists.txt file for this
8383
// project
84-
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/marie/Documents/GitHub/Encore/FNFestClone
84+
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/marie/Documents/GitHub/Encore/Encore
8585
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
8686
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
8787
//number of local generators
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

FNFestClone/build/CMakeFiles/3.29.0-rc2/CMakeSystem.cmake

-15
This file was deleted.

FNFestClone/build/CMakeFiles/CMakeConfigureLog.yaml

-11
This file was deleted.

FNFestClone/build/CMakeFiles/cmake.check_cache

-1
This file was deleted.

0 commit comments

Comments
 (0)