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