mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
9 lines
184 B
CMake
9 lines
184 B
CMake
project(linux_client)
|
|
|
|
file(GLOB SRC_FILES ./*.cpp)
|
|
file(GLOB HEAD_FILES ./*.h)
|
|
|
|
add_executable(${PROJECT_NAME} ${SRC_FILES} ${HEAD_FILES})
|
|
|
|
target_link_libraries(${PROJECT_NAME} ipc)
|