Skip to content
Snippets Groups Projects
Commit 84c1aff4 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Bug fix: correct path to mod files

This did not produce an error because the mod files are also in
`${CMAKE_CURRENT_BINARY_DIR}`.
parent 470b37fa
No related branches found
No related tags found
No related merge requests found
......@@ -113,6 +113,6 @@ foreach(my_target IN ITEMS test_get_1_outerm test_set_all_outerm
${CMAKE_CURRENT_BINARY_DIR}/${my_target}_modules)
target_include_directories(${my_target} PRIVATE
${PROJECT_BINARY_DIR}/${my_target}_modules>)
${CMAKE_CURRENT_BINARY_DIR}/${my_target}_modules>)
endforeach()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment