ComputationalBiomechanicsLab / opensim-creator

A UI for building OpenSim models
https://opensimcreator.com
Apache License 2.0
141 stars 17 forks source link

I can't find osc.exe. #747

Closed iverson1github closed 1 year ago

iverson1github commented 1 year ago

After Run the build script build_windows.bat, I don't find the osc.exe in the osc-build directory. Why?

adamkewley commented 1 year ago

build_windows.bat, once sucesfully completed, builds the package target for osc (i.e. the installer):

The package target also builds the osc target. The location of osc.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 for osc.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 initially builds all of OSC's dependencies, followed by hooking up VS with the build so that developers can edit, build, run, etc. OSC

adamkewley commented 1 year ago

Closing because I'm assuming it's fine - reopen if not.