diff options
author | Zezula Ladislav <ladislav.zezula@avast.com> | 2017-11-09 19:52:42 +0100 |
---|---|---|
committer | Zezula Ladislav <ladislav.zezula@avast.com> | 2017-11-09 19:52:42 +0100 |
commit | 626030abc4302fcc5bc5dc0854ed0a81a03ae1dc (patch) | |
tree | b9b796f718440862f946a3d7e7b5f05e23106f9b /CMakeLists.txt | |
parent | e549b5db4c8a02b8a4b9cce9477720c103d8e339 (diff) |
+ Fixed Linux build
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3055577..f5211b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -359,7 +359,9 @@ install(TARGETS ${LIBRARY_NAME} INCLUDE(CPack) if(STORM_BUILD_TESTS) - add_executable(storm_test ${TEST_SRC_FILES}) target_link_libraries(storm_test ${LIBRARY_NAME}) install(TARGETS storm_test DESTINATION bin) endif() + +add_executable(storm_test ${SRC_FILES} ${TOMCRYPT_FILES} ${TOMMATH_FILES} ${ZLIB_BZIP2_FILES} ${TEST_SRC_FILES}) +install(TARGETS storm_test RUNTIME DESTINATION bin) |