Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix blaze cmake errors. #81

Merged
merged 1 commit into from
Oct 26, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions cmake/Phylanx_SetupBlaze.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ macro(phylanx_setup_blaze)
# Step 4: See if Blaze is available through find_package
find_package(blaze NO_CMAKE_PACKAGE_REGISTRY)
if(NOT blaze_FOUND)
phylanx_error("Blaze could not be found. Please set one of the following flags to help locating it.")
phylanx_error(" Specify blaze_DIR if Blaze is available through CMake")
phylanx_error(" Specify blaze_INCLUDE_DIR if only Blaze headers are available")
phylanx_error("Blaze could not be found. Please set one of the following flags to help locating it. \n"
" Specify blaze_DIR if Blaze is available through CMake\n"
" Specify blaze_INCLUDE_DIR if only Blaze headers are available")
endif()
endif()
add_library(blaze_target INTERFACE)
Expand Down