cmake_minimum_required(VERSION 3.13) set(CMAKE_VERBOSE_MAKEFILE on) set(rnoh_push_notification_generated_dir "${CMAKE_CURRENT_SOURCE_DIR}/generated") file(GLOB_RECURSE rnoh_push_notification_generated_SRC "${rnoh_push_notification_generated_dir}/**/*.cpp") file(GLOB rnoh_push_notification_SRC CONFIGURE_DEPENDS *.cpp) add_library(rnoh_push_notification SHARED ${rnoh_push_notification_SRC} ${rnoh_push_notification_generated_SRC}) target_include_directories(rnoh_push_notification PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${rnoh_push_notification_generated_dir}) target_link_libraries(rnoh_push_notification PUBLIC rnoh)