|
@@ -8,14 +8,14 @@ set(CMAKE_C_STANDARD 23)
|
|
|
set(SRC
|
|
|
"src/Image.c"
|
|
|
"src/Network.c"
|
|
|
- "src/Window.c"
|
|
|
+ "src/WindowManager.c"
|
|
|
)
|
|
|
|
|
|
set(SRC_TESTS
|
|
|
"test/Main.c"
|
|
|
"test/modules/ImageTests.c"
|
|
|
"test/modules/NetworkTests.c"
|
|
|
- "test/modules/WindowTests.c"
|
|
|
+ "test/modules/WindowManagerTests.c"
|
|
|
)
|
|
|
|
|
|
if("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
|
|
@@ -77,7 +77,7 @@ target_sources(gaming_core PUBLIC
|
|
|
FILES
|
|
|
./include/core/Image.h
|
|
|
./include/core/Network.h
|
|
|
- ./include/core/Window.h
|
|
|
+ ./include/core/WindowManager.h
|
|
|
)
|
|
|
install(TARGETS gaming_core FILE_SET HEADERS)
|
|
|
|