mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-28 16:37:23 +00:00
005a12424e
- Each library and binary got their own CMakeLists.txt - Indentation was fixed everywhere - Weird if statement flows replaced
16 lines
315 B
CMake
16 lines
315 B
CMake
file(
|
|
GLOB SOURCES_DGAME
|
|
LIST_DIRECTORIES false
|
|
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
*.cpp
|
|
dBehaviors/*.cpp
|
|
dComponents/*.cpp
|
|
dGameMessages/*.cpp
|
|
dInventory/*.cpp
|
|
dMission/*.cpp
|
|
dEntity/*.cpp
|
|
dUtilities/*.cpp
|
|
../dScripts/*.cpp
|
|
)
|
|
|
|
add_library(dGame ${SOURCES_DGAME}) |