11 lines
206 B
CMake
11 lines
206 B
CMake
file(GLOB_RECURSE FILE_SOURCES "*.h" "*.c" "*.cpp")
|
|
|
|
add_library(EterPythonLib STATIC ${FILE_SOURCES})
|
|
|
|
target_link_libraries(EterPythonLib
|
|
lzo2
|
|
cryptopp-static
|
|
)
|
|
|
|
GroupSourcesByFolder(EterPythonLib)
|