Commit a9468d1c by Maarten L. Hekkelman

Fix test in cmake file

parent a29e3e8d
......@@ -33,9 +33,8 @@ set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
# Only try to recreate SymOpTable_data.hpp if CCP4 is known
option(CCP4 "The location where ccp4 is installed" "")
if(DEFINED CCP4 AND EXISTS ${CCP4})
set(CCP4 $ENV{CCP4})
set(CLIBD ${CCP4}/lib/data)
elseif(NOT DEFINED CCP4 AND DEFINED $ENV{CCP4} AND EXISTS $ENV{CCP4})
elseif(EXISTS $ENV{CCP4})
set(CCP4 $ENV{CCP4})
set(CLIBD ${CCP4}/lib/data)
endif()
......@@ -400,7 +399,4 @@ if(CIFPP_BUILD_TESTS)
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/test)
endforeach()
endif()
message("Still to do: package, tools, create symop_Data")
endif()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment