We could yum-search cmake-gui, install it and boot it so that easily create project files for compilation, which means almost make files as configured:
cmake-gui can use VERSION 3.6.1 if you add entry:
message is the below:
CMake Error: The source directory "...../read_005/src" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
We must create CMakeLists.txt but we can select "from UNIX makefile" as "Configure".
"cmake-gui" itself is CMake 2.8.12.2 displayed.
We could see CmakeCache.txt like the below so that we could not create tags by use of cmak-gui.
########################
# EXTERNAL cache entries
########################
cmake_minimum_required:STRING=VERSION 3.6.1
We'd rather love:
cmake_minimum_required(VERSION 3.6.1)
cmake-gui version itself must be higher, at least, we think.
(20200911: cmake3-gui)
Configured and Generator: Now they are same.
---
CMake Error: The source directory ".../src/read_006/src" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
---
コメント
コメントを投稿