12 lines
196 B
CMake
12 lines
196 B
CMake
file(GLOB_RECURSE FILE_SOURCES "*.h" "*.c" "*.cpp")
|
|
|
|
add_library(EterBase STATIC ${FILE_SOURCES})
|
|
|
|
target_link_libraries(EterBase
|
|
lzo2
|
|
cryptopp-static
|
|
mio
|
|
)
|
|
|
|
GroupSourcesByFolder(EterBase)
|