We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
make install
Please add make install to the CMake configuration, it just small change that save a bit of time copying the executable to bin each update.
bin
I added this line to the end of the current CMake configuration and it works just fine.
install(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR})
The text was updated successfully, but these errors were encountered:
Does the executable work from any location with sudo ? Because on immutable systems you cant copy it to the system bin folder and thats okay.
sudo
Adding make install would break it possibly.
Sorry, something went wrong.
fix issue FlyGoat#252
c95d1f1
added install directories according to @thanhminhmr
fix issue #252
09ab55b
No branches or pull requests
Please add
make install
to the CMake configuration, it just small change that save a bit of time copying the executable tobin
each update.I added this line to the end of the current CMake configuration and it works just fine.
The text was updated successfully, but these errors were encountered: