EventBus/sample/CMakeLists.txt
Dawid Drozd 02b45437b6 Update clang-format config file and reformat whole code according to it
- Clang-tidy applied
- No logic changes, just code style improvement.
2019-06-29 11:27:38 +02:00

14 lines
256 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)