6 lines
106 B
CMake
6 lines
106 B
CMake
file(GLOB_RECURSE MY_SOURCES CONFIGURE_DEPENDS
|
|
"*.cpp"
|
|
"*.h"
|
|
)
|
|
|
|
add_library(Server ${MY_SOURCES})
|