EventBus/sample/CMakeLists.txt
2018-07-24 12:47:10 +02:00

14 lines
258 B
CMake

cmake_minimum_required(VERSION 3.8 FATAL_ERROR)
project(Sample LANGUAGES CXX)
add_executable(Sample
src/main.cpp
)
if(NOT TARGET Dexode::EventBus)
find_package(EventBus CONFIG REQUIRED)
endif()
target_link_libraries(Sample PRIVATE Dexode::EventBus)