mirror of
https://github.com/lefticus/6502-cpp.git
synced 2024-11-01 05:05:23 +00:00
25 lines
689 B
CMake
25 lines
689 B
CMake
macro(run_conan)
|
|
# Download automatically, you can also just copy the conan.cmake file
|
|
if(NOT EXISTS "${CMAKE_BINARY_DIR}/conan.cmake")
|
|
message(STATUS "Downloading conan.cmake from https://github.com/conan-io/cmake-conan")
|
|
file(DOWNLOAD "https://github.com/conan-io/cmake-conan/raw/v0.16.1/conan.cmake" "${CMAKE_BINARY_DIR}/conan.cmake")
|
|
endif()
|
|
|
|
include(${CMAKE_BINARY_DIR}/conan.cmake)
|
|
|
|
conan_cmake_run(
|
|
REQUIRES
|
|
${CONAN_EXTRA_REQUIRES}
|
|
catch2/2.13.6
|
|
docopt.cpp/0.6.3
|
|
fmt/7.1.3
|
|
spdlog/1.8.5
|
|
ctre/3.3.4
|
|
OPTIONS
|
|
${CONAN_EXTRA_OPTIONS}
|
|
BASIC_SETUP
|
|
CMAKE_TARGETS # individual targets to link to
|
|
BUILD
|
|
missing)
|
|
endmacro()
|