mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-26 06:49:33 +00:00
5 lines
211 B
CMake
5 lines
211 B
CMake
|
set(CMAKE_CXX_FLAGS "--std=c++11 -Wall -Wno-multichar")
|
||
|
find_package(Boost COMPONENTS unit_test_framework)
|
||
|
add_executable(RezUnitTests UnitTests.cc)
|
||
|
target_link_libraries(RezUnitTests RezLib ${Boost_LIBRARIES})
|