Changes between Initial Version and Version 4 of Ticket #2137
- Timestamp:
- Jul 25, 2019, 9:01:08 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2137
- Property Type defect → enhancement
-
Ticket #2137 – Description
initial v4 7 7 - first provide the concrete command to execute, do NOT show some meta yntax where users expect to copy-paste. 8 8 - (optional) guidance comes only after explanation of all the options. According to the funnel GUI pattern, that explanation should be a sideline, but not be on the mainline. 9 - the command indicated does not work for me: 9 10 - the command indicated does not work for me because the previous step was not followed properly: 10 11 {{{ 11 12 cmake .. -DCMAKE_INSTALL_PREFIX=$RMANHOME -DCMAKE_BUILD_TYPE=Release \ … … 13 14 -DWAR_DIR=/var/lib/tomcat/webapps 14 15 }}} 15 I get the error message: 16 {{{ 17 ~/build$ cmake .. -DCMAKE_INSTALL_PREFIX=$RMANHOME -DCMAKE_BUILD_TYPE=Release \ 18 > -DUSE_NETCDF=ON -DUSE_GRIB=ON -DFILE_DATA_DIR=$RMANHOME/data \ 19 > -DWAR_DIR=/var/lib/tomcat/webapps 20 CMake Error: The source directory "/home/rasdaman" does not appear to contain CMakeLists.txt. 21 Specify --help for usage, or press the help button on the CMake GUI. 22 }}} 23 ...which makes sense as said file is in ../rasdaman . With this directory, cmake succeeds. However, for simplicity I recommend changing to 24 {{{ 25 cd ../rasdaman 26 cmake ... 27 }}} 16 a Note should be added to clarify that the first parameter `..` is the path to the source directory.