changed crypto to cncrypto so it generated libcncrypto

fix a cmakelist
This commit is contained in:
Gentian 2017-05-21 02:21:17 -04:00
parent 694470fae7
commit 4b932ff314
14 changed files with 21 additions and 21 deletions

View file

@ -37,17 +37,17 @@ set(crypto_sources
set(crypto_headers
crypto-tests.h)
add_executable(crypto-tests
add_executable(cncrypto-tests
${crypto_sources}
${crypto_headers})
target_link_libraries(crypto-tests
target_link_libraries(cncrypto-tests
PRIVATE
${Boost_SYSTEM_LIBRARY}
${EXTRA_LIBRARIES})
set_property(TARGET crypto-tests
set_property(TARGET cncrypto-tests
PROPERTY
FOLDER "tests")
add_test(
NAME crypto
COMMAND crypto-tests "${CMAKE_CURRENT_SOURCE_DIR}/tests.txt")
NAME cncrypto
COMMAND cncrypto-tests "${CMAKE_CURRENT_SOURCE_DIR}/tests.txt")

View file

@ -39,7 +39,7 @@ target_link_libraries(transfers
useragent
rpc
cryptonote_core
crypto
cncrypto
common
epee
${GTEST_LIBRARIES})

View file

@ -43,7 +43,7 @@ target_link_libraries(functional_tests
cryptonote_core
wallet
common
crypto
cncrypto
epee
${Boost_REGEX_LIBRARY}
${Boost_PROGRAM_OPTIONS_LIBRARY}

View file

@ -36,7 +36,7 @@ add_executable(hash-tests
${hash_headers})
target_link_libraries(hash-tests
PRIVATE
crypto
cncrypto
${EXTRA_LIBRARIES})
set_property(TARGET hash-tests
PROPERTY

View file

@ -53,7 +53,7 @@ target_link_libraries(performance_tests
PRIVATE
cryptonote_core
common
crypto
cncrypto
epee
${Boost_CHRONO_LIBRARY}
${CMAKE_THREAD_LIBS_INIT}