1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-06-26 00:29:30 +00:00
6502-cpp/src/CMakeLists.txt

19 lines
557 B
CMake
Raw Normal View History

option(CPP_STARTER_USE_SDL "Enable compilation of SDL sample" OFF)
# sdl
if(CPP_STARTER_USE_SDL)
message("Using SDL2")
add_subdirectory(sdl)
endif()
# Generic test that uses conan libs
add_executable(6502-c++ 6502-c++.cpp ../include/optimizer.hpp ../include/assembly.hpp ../include/6502.hpp ../include/personality.hpp ../include/personalities/c64.hpp)
target_link_libraries(
6502-c++
PRIVATE project_options
project_warnings
2021-05-07 03:43:03 +00:00
CONAN_PKG::ctre
CONAN_PKG::docopt.cpp
CONAN_PKG::fmt
CONAN_PKG::spdlog)