14 lines
234 B
CMake
14 lines
234 B
CMake
|
|
add_executable(accordion-server
|
|
src/main.cpp
|
|
# other server source files go here
|
|
)
|
|
|
|
target_include_directories(accordion-server PRIVATE
|
|
${ROOT_DIR}
|
|
)
|
|
|
|
target_link_libraries(accordion-server PRIVATE
|
|
accordion-common
|
|
)
|