mirror of
https://github.com/gelldur/EventBus.git
synced 2024-12-27 12:21:02 +08:00
02b45437b6
- Clang-tidy applied - No logic changes, just code style improvement.
14 lines
256 B
CMake
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)
|