Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@ elseif(UNIX AND NOT APPLE)
add_compile_definitions(LINUX_OS)
endif()

# download CPM.cmake
set(CPM_VERSION 0.42.0)
set(CPM_LOCATION "${CMAKE_BINARY_DIR}/cmake/CPM_${CPM_VERSION}.cmake")

if(NOT (EXISTS ${CPM_LOCATION}))
message(STATUS "Downloading CPM.cmake")
file(DOWNLOAD https://github.com/TheLartians/CPM.cmake/releases/download/v${CPM_VERSION}/CPM.cmake ${CPM_LOCATION})
endif()

include(${CPM_LOCATION})

add_subdirectory(src)

if (BUILD_TEST)
Expand Down
39 changes: 17 additions & 22 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,33 +136,28 @@ if (WIN32) # Install dlls in the same directory as the executable on Windows
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/src)
endif ()


include(FetchContent)
FetchContent_Declare(spdlog
URL https://github.com/gabime/spdlog/archive/refs/tags/v1.15.2.zip
CPMAddPackage(
NAME spdlog
GITHUB_REPOSITORY gabime/spdlog
VERSION 1.15.2)

CPMAddPackage(
NAME json
VERSION 3.11.3
# The git repo is incredibly large, so we download the archived include directory
URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz
)

FetchContent_Declare(json
URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz)

FetchContent_Declare(cpr
GIT_REPOSITORY https://github.com/libcpr/cpr.git
GIT_TAG 96cd60913124f2a9a17f9d814f3db11d62ef3ae0)

FetchContent_Declare(SingleApplication
URL https://github.com/itay-grudev/SingleApplication/archive/refs/tags/v3.5.2.tar.gz)

FetchContent_Declare(mio
GIT_REPOSITORY https://github.com/vimpunk/mio.git
GIT_TAG 8b6b7d878c89e81614d05edca7936de41ccdd2da
CPMAddPackage(
NAME SingleApplication
VERSION 3.5.2
URL https://github.com/itay-grudev/SingleApplication/archive/refs/tags/v3.5.2.tar.gz
)

FetchContent_Declare(magic_enum
GIT_REPOSITORY https://github.com/Neargye/magic_enum.git
GIT_TAG v0.9.7
)
CPMAddPackage("gh:libcpr/cpr#96cd60913124f2a9a17f9d814f3db11d62ef3ae0")
CPMAddPackage("gh:vimpunk/mio#8b6b7d878c89e81614d05edca7936de41ccdd2da")
CPMAddPackage("gh:Neargye/magic_enum@0.9.7")

FetchContent_MakeAvailable(spdlog json cpr SingleApplication mio magic_enum)

set(MIO_INCLUDE_DIR ${mio_SOURCE_DIR}/single_include)
include_directories(${MIO_INCLUDE_DIR})
Expand Down