From f7beb4d2de8ba58ad18919647756cba33f588ac5 Mon Sep 17 00:00:00 2001 From: Alexey Stratulat <alexey.stratulat@demlabs.net> Date: Wed, 28 Aug 2019 11:53:32 +0700 Subject: [PATCH] Edited the Cmake file so that it would be possible to include header files from other projects. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f197d5..5722455 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,8 @@ target_compile_options( target_link_libraries(${PROJECT_NAME} dap_core dap_crypto) +target_include_directories(${PROJECT_NAME} PUBLIC src/ ) + file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/src/libdapConnector.py DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/) -- GitLab