CMAKE_FRAMEWORK_PATH is bad as it's read by cmake but it is not available in cmake scripts.
Also according to the documentation this variable should contain path to OS X frameworks.
CMAKE_MODULE_PATH is the right way to go.
By adding this code to CMakeLists.txt (line 78 in this case):
-- The C compiler identification is GNU 7.5.0
-- The CXX compiler identification is GNU 7.5.0
...
-- Building eosio.contracts v1.9.0-rc1
-- Using eosio.cdt version 1.7.0
CMake Error at CMakeLists.txt:78 (message):
-- Configuring incomplete, errors occurred!
Change Description
CMAKE_FRAMEWORK_PATH is bad as it's read by cmake but it is not available in cmake scripts. Also according to the documentation this variable should contain path to OS X frameworks.
CMAKE_MODULE_PATH is the right way to go.
By adding this code to CMakeLists.txt (line 78 in this case):
And run:
You get the following output:
Deployment Changes
API Changes
Documentation Additions