You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
263 B

project(sources)
add_executable(${PROJECT_NAME} src/main.cpp)
target_include_directories( ${PROJECT_NAME}
PUBLIC
${PROJECT_SOURCE_DIR}/inc
)
target_compile_options(${PROJECT_NAME}
PRIVATE
${C_FLAGS})
target_link_libraries(${PROJECT_NAME}
sub::adder)