diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-08-14 01:19:33 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-08-14 01:19:33 +0200 |
commit | bf721f718ed2ca3e5d409a2f6b48312ee95d2e4e (patch) | |
tree | 3058045f16e69b423a91bffc1a7ed79ea77489fa /src/CMakeLists.txt | |
parent | cd0f973cf622f7476514143122f699f5a9277c44 (diff) | |
download | fastd-bf721f718ed2ca3e5d409a2f6b48312ee95d2e4e.tar fastd-bf721f718ed2ca3e5d409a2f6b48312ee95d2e4e.zip |
Implement new lexer that is not generated by flex to reduce code size
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 10e5656..1fe0873 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -11,7 +11,6 @@ endif(WITH_METHOD_AES128_GCM) include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${FASTD_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CAP_INCLUDE_DIR} ${UECC_INCLUDE_DIRS} ${NACL_INCLUDE_DIR}) link_directories(${UECC_LIBRARY_DIRS}) -FLEX_TARGET(fastd_config_lex config.l ${CMAKE_CURRENT_BINARY_DIR}/config.ll.c) BISON_TARGET(fastd_config_parse config.y ${CMAKE_CURRENT_BINARY_DIR}/config.yy.c) add_executable(fastd @@ -21,6 +20,7 @@ add_executable(fastd crypto.c crypto_linux.c handshake.c + lex.c options.c peer.c printf.c @@ -34,7 +34,6 @@ add_executable(fastd task.c tuntap.c protocol_ec25519_fhmqvc.c - ${FLEX_fastd_config_lex_OUTPUTS} ${BISON_fastd_config_parse_OUTPUTS} ${METHODS} ) |