diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-02 18:28:22 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-02 18:28:22 +0100 |
commit | 8764a80ac01c5b37e6657db07bba7323e2a61906 (patch) | |
tree | 7f52203bacce47a52e22da909fc4cf07128381ca /src/protocols/ec25519_fhmqvc | |
parent | 38b7d50694b4a9929cc0d5bca884a52d5aeaa8a4 (diff) | |
download | fastd-8764a80ac01c5b37e6657db07bba7323e2a61906.tar fastd-8764a80ac01c5b37e6657db07bba7323e2a61906.zip |
More CMake cleanup and fixes
Diffstat (limited to 'src/protocols/ec25519_fhmqvc')
-rw-r--r-- | src/protocols/ec25519_fhmqvc/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/protocols/ec25519_fhmqvc/CMakeLists.txt b/src/protocols/ec25519_fhmqvc/CMakeLists.txt index d637a25..3edaf8f 100644 --- a/src/protocols/ec25519_fhmqvc/CMakeLists.txt +++ b/src/protocols/ec25519_fhmqvc/CMakeLists.txt @@ -1,5 +1,3 @@ -include_directories(${FASTD_SOURCE_DIR} ${FASTD_BINARY_DIR}/src ${UECC_INCLUDE_DIRS}) - add_library(protocol_ec25519_fhmqvc OBJECT ec25519_fhmqvc.c handshake.c @@ -7,3 +5,4 @@ add_library(protocol_ec25519_fhmqvc OBJECT util.c ) set_property(TARGET protocol_ec25519_fhmqvc PROPERTY COMPILE_FLAGS "${FASTD_CFLAGS}") +target_include_directories(protocol_ec25519_fhmqvc PRIVATE ${UECC_INCLUDE_DIRS}) |