17 lines
324 B
CMake
17 lines
324 B
CMake
cmake_minimum_required(VERSION 3.24)
|
|
|
|
project(quark)
|
|
|
|
include(FetchContent)
|
|
|
|
set(SPDLOG_BUILD_SHARED ON CACHE INTERNAL "")
|
|
FetchContent_Declare(
|
|
spdlog
|
|
GIT_REPOSITORY https://github.com/gabime/spdlog
|
|
GIT_TAG 8e5613379f5140fefb0b60412fbf1f5406e7c7f8
|
|
FIND_PACKAGE_ARGS
|
|
)
|
|
|
|
add_subdirectory(quark)
|
|
add_subdirectory(sandbox)
|