diff options
| author | auth <[email protected]> | 2020-07-03 14:30:26 +0200 |
|---|---|---|
| committer | auth <[email protected]> | 2020-07-03 14:30:26 +0200 |
| commit | 40025e07ca06f48d21b583adc9f78b7b10d90995 (patch) | |
| tree | 08cc6c5fff5953e0f61b851615d4ebdf93dc7733 /CMakeLists.txt | |
| parent | Added client timeout. (diff) | |
| download | loader-40025e07ca06f48d21b583adc9f78b7b10d90995.tar.xz loader-40025e07ca06f48d21b583adc9f78b7b10d90995.zip | |
Started asmjit wrapper for easier manipulation.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 3 |
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}) |