mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-12-24 17:41:01 +03:00
programs: cmake: Fix relative path warnings
The path to source files were relative which triggered warnings when generating the build system. Move to absolute paths based on CMAKE_CURRENT_SOURCE_DIR. Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
@@ -28,7 +28,7 @@ add_executable(zeroize zeroize.c)
|
||||
target_link_libraries(zeroize mbedcrypto)
|
||||
|
||||
add_executable(query_compile_time_config query_compile_time_config.c)
|
||||
target_sources(query_compile_time_config PUBLIC query_config.c)
|
||||
target_sources(query_compile_time_config PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/query_config.c)
|
||||
target_link_libraries(query_compile_time_config mbedcrypto)
|
||||
|
||||
install(TARGETS selftest benchmark udp_proxy query_compile_time_config
|
||||
|
||||
Reference in New Issue
Block a user