2023-07-02 19:51:09 +02:00
|
|
|
enable_language(C)
|
2016-07-09 11:21:54 +02:00
|
|
|
add_library(greeting SHARED greeting.c)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_executable(hello hello_with_greeting.c)
|
|
|
|
target_link_libraries(hello greeting)
|
|
|
|
include(CheckOutput.cmake)
|
|
|
|
include(CheckNoPrefixSubDir.cmake)
|