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 thepackagetarget forosc(i.e. the installer):The
packagetarget also builds theosctarget. The location ofosc.exeis 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.exein the build dir.If you intend on developing
oscon Windows with (e.g.) Visual Studio, there's a rough guide here:Which initia…