DarkflameServer/dDatabase/CMakeLists.txt
Jett 005a12424e Fix indentation and divided the cmake into libraries and bins
- Each library and binary got their own CMakeLists.txt
- Indentation was fixed everywhere
- Weird if statement flows replaced
2022-01-22 10:27:19 +00:00

10 lines
217 B
CMake

file(
GLOB SOURCES_DDATABASE
LIST_DIRECTORIES false
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
*.cpp
Tables/*.cpp
)
add_library(dDatabase ${SOURCES_DDATABASE})
target_link_libraries(dDatabase sqlite3)