5 lines
98 B
CMake
5 lines
98 B
CMake
|
file(GLOB hdrs "*.h")
|
||
|
file(GLOB srcs "*.cpp")
|
||
|
|
||
|
add_library(simplecpp_objs OBJECT ${srcs} ${hdrs})
|