diff options
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r-- | tests/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 0e6c852..00e2cd9 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -105,7 +105,7 @@ elseif (NOT $ENV{MACOSX_DEPLOY_DIR} STREQUAL "") set(OPENCSG_DIR "$ENV{MACOSX_DEPLOY_DIR}") endif() if (NOT OPENCSG_INCLUDE_DIR) - message(STATUS ${OPENCSG_DIR}) + message(STATUS "OPENCSG_DIR: " ${OPENCSG_DIR}) find_path(OPENCSG_INCLUDE_DIR opencsg.h PATHS ${OPENCSG_DIR}/include) @@ -115,7 +115,8 @@ if (NOT OPENCSG_INCLUDE_DIR) if (NOT OPENCSG_INCLUDE_DIR OR NOT OPENCSG_LIBRARY) message(FATAL_ERROR "OpenCSG not found") else() - message(STATUS "OpenCSG found in " ${OPENCSG_LIBRARY}) + message(STATUS "OpenCSG include found in " ${OPENCSG_INCLUDE_DIR}) + message(STATUS "OpenCSG library found in " ${OPENCSG_LIBRARY}) endif() endif() include_directories(${OPENCSG_INCLUDE_DIR}) |