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