You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
build instructions in readme assume the default cmake build backend is make which may not be the case (in my case it's Ninja which is faster than make).
Original
cd RyzenAdj
rm -r win32
mkdir build &&cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
#...
Suggested
cd RyzenAdj
rm -r win32
cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
cmake --build build
cd build
#...
What do you think?
Edit: fixed cmake args (upper case)
The text was updated successfully, but these errors were encountered:
I decided to try this on Mint 22. At the first cmake I got:
CMake Warning:
Ignoring extra path from command line:
"[my full path to]/RyzenAdj/build"
CMake Error: Unknown argument -s
CMake Error: Run 'cmake --help' for all supported options.
Hi,
build instructions in readme assume the default
cmake
build backend ismake
which may not be the case (in my case it'sNinja
which is faster thanmake
).Original
Suggested
What do you think?
Edit: fixed cmake args (upper case)
The text was updated successfully, but these errors were encountered: