Skip to content

Commit

Permalink
Improve install_test log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
tpadioleau committed Jan 27, 2025
1 parent 4b04884 commit ee9a7f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions install_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ find_package(DDC 0.4 REQUIRED)
find_package(DDC 0.4 REQUIRED COMPONENTS fft)
find_package(DDC 0.4 REQUIRED COMPONENTS pdi splines)

message("DDC options:")
message("DDC_BUILD_DOUBLE_PRECISION=${DDC_BUILD_DOUBLE_PRECISION}")
message("DDC_fft_FOUND=${DDC_fft_FOUND}")
message("DDC_pdi_FOUND=${DDC_pdi_FOUND}")
message("DDC_splines_FOUND=${DDC_splines_FOUND}")
message(STATUS "DDC options:")
message(STATUS "* DDC_BUILD_DOUBLE_PRECISION=${DDC_BUILD_DOUBLE_PRECISION}")
message(STATUS "* DDC_fft_FOUND=${DDC_fft_FOUND}")
message(STATUS "* DDC_pdi_FOUND=${DDC_pdi_FOUND}")
message(STATUS "* DDC_splines_FOUND=${DDC_splines_FOUND}")

add_executable(main main.cpp)
target_link_libraries(main PRIVATE DDC::core DDC::fft DDC::pdi DDC::splines)

0 comments on commit ee9a7f3

Please sign in to comment.