Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.24 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.24 KB

OMEdit

A Modelica connection editor for OpenModelica.

Dependencies

Build instructions

Follow the instructions matching your OS:

Windows MSYS Makefiles

If you used MSYS Makefiles to compile OpenModelica you need one additional step:

Start a MSYS terminal $OMDEV\tools\msys\mingw64.exe (64 bit) or $OMDEV\tools\msys\mingw32.exe (32 bit) and run:

$ cd /path/to/OpenModelica
make -f Makefile.omdev.mingw omedit -j<Nr. of cores>

Start OMEdit from /path/to/OpenModelica/build/bin/OMEdit.exe

Coding Style

  • 2 spaces not tab
  • CamelCase except that first letter should be small.
  • Member variables should start with m and member pointers should start with mp.
  • Local pointers should start with p.
  • Use meaningful name for variables and functions.

Bug Reports