2023-07-02 19:51:09 +02:00
|
|
|
enable_language(C)
|
2016-07-09 11:21:54 +02:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/bin")
|
|
|
|
add_subdirectory(SubDirPrefix)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_executable(hello hello_sub_greeting.c)
|
|
|
|
target_link_libraries(hello greeting)
|
|
|
|
include(CheckOutput.cmake)
|