diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 29ea67d..e0bcae2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,11 +31,14 @@ find_package(OpenSSL REQUIRED) include_directories(include) add_library(salticidae OBJECT + src/type.cpp src/util.cpp - src/conn.cpp - src/network.cpp + src/event.cpp src/stream.cpp - src/netaddr.cpp) + src/msg.cpp + src/netaddr.cpp + src/conn.cpp + src/network.cpp) option(BUILD_SHARED "build shared library." OFF) if(BUILD_SHARED) |