RyzenAdj
RyzenAdj copied to clipboard
Add `make install` to CMake configuration
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.
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})
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.
Adding make install would break it possibly.