cmake_minimum_required(VERSION 3.24)
project(MyApp CXX)

set(CMAKE_CXX_STANDARD 17)
find_package(hello REQUIRED)

# Request that Findbye.cmake (generated by Conan)
# is used instead of bye-config.cmake
find_package(bye MODULE REQUIRED)


add_executable(app main.cpp)
target_link_libraries(app hello::hello bye::bye)
