Skip to content

Commit

Permalink
Fix include directory search order.
Browse files Browse the repository at this point in the history
  • Loading branch information
nealkruis committed Feb 7, 2024
1 parent 9c668dc commit 32fae35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ else ()
add_library(libHPWHsim SHARED ${library_sources})
endif ()

target_include_directories(libHPWHsim PUBLIC ${PROJECT_BINARY_DIR}/src ${PROJECT_SOURCE_DIR}/src)
target_include_directories(libHPWHsim PUBLIC ${PROJECT_SOURCE_DIR}/src ${PROJECT_BINARY_DIR}/src)

target_link_libraries(libHPWHsim PRIVATE ${PROJECT_NAME}_common_interface PUBLIC btwxt)
target_compile_features(libHPWHsim PRIVATE cxx_std_17)
Expand Down

0 comments on commit 32fae35

Please sign in to comment.