mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-07-02 09:39:52 +00:00

- Each library and binary got their own CMakeLists.txt - Indentation was fixed everywhere - Weird if statement flows replaced
10 lines
236 B
CMake
10 lines
236 B
CMake
file(
|
|
GLOB SOURCES_DCOMMON
|
|
LIST_DIRECTORIES false
|
|
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
*.cpp
|
|
)
|
|
|
|
add_library(dCommon ${SOURCES_DCOMMON})
|
|
target_link_libraries(dCommon ZLIB::ZLIB)
|
|
target_link_libraries(dCommon libbcrypt) |