diff options
author | Mattes D <github@xoft.cz> | 2019-09-06 14:14:25 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2019-09-07 13:38:07 +0200 |
commit | 343bc2729e92b2a4f10edbd1d89d982b881ec3d2 (patch) | |
tree | 4a66cbff3bcf8761a31473d2f2197e5d11cf2a0b /tests/Generating/CMakeLists.txt | |
parent | CompoGenNether: Fixed different data produced in Linux Release builds. (diff) | |
download | cuberite-343bc2729e92b2a4f10edbd1d89d982b881ec3d2.tar cuberite-343bc2729e92b2a4f10edbd1d89d982b881ec3d2.tar.gz cuberite-343bc2729e92b2a4f10edbd1d89d982b881ec3d2.tar.bz2 cuberite-343bc2729e92b2a4f10edbd1d89d982b881ec3d2.tar.lz cuberite-343bc2729e92b2a4f10edbd1d89d982b881ec3d2.tar.xz cuberite-343bc2729e92b2a4f10edbd1d89d982b881ec3d2.tar.zst cuberite-343bc2729e92b2a4f10edbd1d89d982b881ec3d2.zip |
Diffstat (limited to 'tests/Generating/CMakeLists.txt')
-rw-r--r-- | tests/Generating/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Generating/CMakeLists.txt b/tests/Generating/CMakeLists.txt index 0232b7a8a..cfdae6c68 100644 --- a/tests/Generating/CMakeLists.txt +++ b/tests/Generating/CMakeLists.txt @@ -3,6 +3,7 @@ enable_testing() include_directories(${CMAKE_SOURCE_DIR}/src/) include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/lib/) +include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/lib/mbedtls/include) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) add_definitions(-DTEST_GLOBALS=1) @@ -168,8 +169,9 @@ source_group("Generating" FILES ${GENERATING_HDRS} ${GENERATING_SRCS}) add_executable(BasicGeneratorTest BasicGeneratorTest.cpp ${CMAKE_SOURCE_DIR}/src/IniFile.cpp + ${CMAKE_SOURCE_DIR}/src/mbedTLS++/Sha1Checksum.cpp ) -target_link_libraries(BasicGeneratorTest GeneratorTestingSupport) +target_link_libraries(BasicGeneratorTest GeneratorTestingSupport mbedtls) file(COPY "${CMAKE_SOURCE_DIR}/Server/items.ini" DESTINATION "${CMAKE_CURRENT_BINARY_DIR}") add_test( NAME BasicGeneratorTest |