I can't find osc.exe. #1054
-
After Run the build script build_windows.bat, I don't find the osc.exe in the osc-build directory. Why? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The If you intend on developing Which initially builds all of OSC's dependencies, followed by hooking up VS with the build so that developers can edit, build, run, etc. OSC |
Beta Was this translation helpful? Give feedback.
build_windows.bat
, once sucesfully completed, builds thepackage
target forosc
(i.e. the installer):The
package
target also builds theosc
target. The location ofosc.exe
is build-system-determined, but on Windows using MSVC etc. it will typically be something like.\osc-build\x64-RelWithDebInfo\apps\osc\osc.exe
, or similar - it's usually easiest to just search forosc.exe
in the build dir.If you intend on developing
osc
on Windows with (e.g.) Visual Studio, there's a rough guide here:Which initia…