8 lines
203 B
CMake
8 lines
203 B
CMake
project(LibName)
|
|
set(LIBRARY_OUTPUT_PATH lib)
|
|
add_library(bar SHARED bar.c)
|
|
add_library(foo SHARED foo.c)
|
|
target_link_libraries(foo bar)
|
|
add_executable(foobar foobar.c)
|
|
target_link_libraries(foobar foo)
|