-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CMake tries to install GLVis, although it build glvis #234
Comments
It looks like we have some CMake commands related to building a MacOS app that are not properly guarded/skipped on other platforms: Lines 319 to 339 in 0b8d554
Maybe you can just comment out this part: Lines 333 to 339 in 0b8d554
We'll probably need to create a PR to fix this. Thanks for reporting the issue! |
Same here on FreeBSD. |
Can you please try #239? It worked for me on my Linux desktop. |
I worked around the issue on FreeBSD by installing the executable manually. Thanks! |
I am trying to build GLvis. and seeing a strange error. I am using a linux box (Rocky8.6) and cnmake
I did call cmake, first
$ cmake .. -DCMAKE_VERBOSE_MAKEFILE=1 -DCMAKE_INSTALL_PREFIX=${TwoPiRoot} -DMFEM_DIR=${TwoPiRoot}/src/mfem/cmbuild_ser -DCMAKE_BUILD_TYPE="Release"
Then, "make -j" works fine, and it create glvis.
$ make -j
However, "make install" spits out the following error. It seems it is looking for GLVis instead of glvis.
Install the project...
/home/sshiraiw/twopi_roots/20220725/lib/python3.9/site-packages/cmake/data/bin/cmake -P cmake_install.cmake
-- Install configuration: "Release"
-- Installing: /home/sshiraiw/twopi_roots/20220725/bin/glvis
-- Set runtime path of "/home/sshiraiw/twopi_roots/20220725/bin/glvis" to "/home/sshiraiw/twopi_roots/20220725/src/mfem/cmbuild_ser"
CMake Error at cmake_install.cmake:72 (file):
file INSTALL cannot find
"/home/sshiraiw/twopi_roots/20220725/src/glvis/cmbuild/GLVis": No such file
or directory.
Am I missing something?
The text was updated successfully, but these errors were encountered: