File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ foreach(exe IN LISTS executables)
42
42
${extra_sources} )
43
43
set_base_compile_options(${exe} )
44
44
target_link_libraries (${exe} ${libs} ${CMAKE_THREAD_LIBS_INIT} )
45
- target_include_directories (${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} /../../framework /tests/include )
45
+ target_include_directories (${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} /../../framework /tests/include
46
+ ${CMAKE_CURRENT_SOURCE_DIR} /../../tests/include )
46
47
if (exe STREQUAL "ssl_client2" OR exe STREQUAL "ssl_server2" )
47
48
if (GEN_FILES)
48
49
add_dependencies (${exe} generate_query_config_c)
@@ -55,7 +56,8 @@ endforeach()
55
56
if (THREADS_FOUND)
56
57
add_executable (ssl_pthread_server ssl_pthread_server.c $<TARGET_OBJECTS:tf_psa_crypto_test>)
57
58
set_base_compile_options(ssl_pthread_server)
58
- target_include_directories (ssl_pthread_server PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} /../../framework /tests/include )
59
+ target_include_directories (ssl_pthread_server PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} /../../framework /tests/include
60
+ ${CMAKE_CURRENT_SOURCE_DIR} /../../tests/include )
59
61
target_link_libraries (ssl_pthread_server ${libs} ${CMAKE_THREAD_LIBS_INIT} )
60
62
list (APPEND executables ssl_pthread_server)
61
63
endif (THREADS_FOUND)
You can’t perform that action at this time.
0 commit comments