aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorauth <[email protected]>2020-07-03 14:30:26 +0200
committerauth <[email protected]>2020-07-03 14:30:26 +0200
commit40025e07ca06f48d21b583adc9f78b7b10d90995 (patch)
tree08cc6c5fff5953e0f61b851615d4ebdf93dc7733 /CMakeLists.txt
parentAdded client timeout. (diff)
downloadloader-40025e07ca06f48d21b583adc9f78b7b10d90995.tar.xz
loader-40025e07ca06f48d21b583adc9f78b7b10d90995.zip
Started asmjit wrapper for easier manipulation.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c1c15da..35b4f7a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,6 +26,7 @@ set(OPENSSL_USE_STATIC_LIBS TRUE)
add_subdirectory(shared/spdlog)
add_subdirectory(shared/cpr)
+add_subdirectory(shared/asmjit)
add_subdirectory(server)
add_subdirectory(client)
@@ -35,4 +36,4 @@ target_link_libraries(server PRIVATE spdlog ${OPENSSL_LIBRARIES} ${CPR_LIBRARIES
target_precompile_headers(server PRIVATE ${PROJECT_SOURCE_DIR}/shared/linux-pe/linuxpe)
target_include_directories(client PRIVATE ${PROJECT_SOURCE_DIR}/shared ${OPENSSL_INCLUDE_DIR})
-target_link_libraries(client PRIVATE spdlog ${OPENSSL_LIBRARIES})
+target_link_libraries(client PRIVATE spdlog asmjit ${OPENSSL_LIBRARIES})