Anton
12/12/2024, 6:54 AMgit clone <https://github.com/osquery/osquery>
cd osquery
mkdir build
cd build
cmake -G "Visual Studio 17 2022" -A Win32 ..
cmake --build . --config Release -j10
mkdir package
$env:DESTDIR="C:\Temp\osquery\build\package"
cmake --build . --config Release --target install
And after all waiting there's nothing in "package" dir. No errors, output looks like OK
I tried for x64 too or different configs (debug, relwithdefinfo) - same result
Found old threads with same problem, but no solution there
Anything i missed?Anton
12/13/2024, 6:11 PM