mirror of
https://github.com/boostorg/nowide.git
synced 2026-02-15 01:02:17 +00:00
11 lines
305 B
CMake
11 lines
305 B
CMake
# Project testing to consume Boost.Nowide
|
|
cmake_minimum_required(VERSION 3.8.0)
|
|
project(nowide_example_project)
|
|
|
|
find_package(boost_nowide 10.0 REQUIRED)
|
|
|
|
add_executable(example example_main.cpp)
|
|
target_link_libraries(example PRIVATE Boost::nowide)
|
|
enable_testing()
|
|
add_test(NAME example COMMAND example)
|