mirror of
https://github.com/lefticus/6502-cpp.git
synced 2024-11-01 05:05:23 +00:00
24 lines
674 B
CMake
24 lines
674 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
|
||
|
OPTIONS
|
||
|
${CONAN_EXTRA_OPTIONS}
|
||
|
BASIC_SETUP
|
||
|
CMAKE_TARGETS # individual targets to link to
|
||
|
BUILD
|
||
|
missing)
|
||
|
endmacro()
|