- Index
- » Developer
- » OpenModelica development
- » Compiling OMEdit for Linux
Compiling OMEdit for Linux
Compiling OMEdit for Linux
Hello OM developers,
Im going to use OM as part of CAD system. (for Ubuntu)
I have some tasks to customise OMEdit like localize it's UI and add some command line arguments and etc.
I'm going to realise this way: user installs OM 1.8.0 from openmodelica.org packages and then replace omedit by mine one.
Is there any way to build just OMEdit?
In sources (/OMEdit/INSTALL.txt) there are instructions only for Windows (using Qt)
I tried to build OMEdit on windows and wasnt succeed. It seems for me that some files are missing in sources.
Im not experienced in C++/Qt/. I need some help (and time ) to undestand all dependencies of this project.
I hope u can give me some simple instructions to get my goal.
Re: Compiling OMEdit for Linux
On Linux, Use the makefiles inside OMEdit/OMEditGUI directory.
On Windows, follow the INSTALL.txt instructions + you have to generate omc_communication.cc and omc_communication.h files using the omc_communication.idl file located at trunk/Compiler/runtime through the OmniORB (or anyother CORBA idl that you prefer to use).
Adeel.
- adeas
- 454 Posts
Re: Compiling OMEdit for Linux
Code:
apt-get build-dep openmodelica
svn co https://openmodelica.org/svn/OpenModelica/trunk
cd trunk
autoconf
./configure '--disable-rml-trace' 'CC=gcc-4.4' 'CXX=g++-4.4' 'CFLAGS=-O2' '--with-omniORB'
make -j2 omedit
build/bin/OMEdit
Some localization was started on OMShell. If you wish to contribute some localization in OMEdit, feel free to make the necessary adjustments in the OMEdit trunk version. Getting commit access is not hard http://openmodelica.org:8080/cb, create a user, join the OpenModelica project.
- sjoelund.se
- 1700 Posts
Re: Compiling OMEdit for Linux
Hi,
You should have got an email from the CodeBeamer system to activate your user (have a look in Spam).
However, I now activated you user manually and you can login and Join the OpenModelica project, see here at the end:
https://www.openmodelica.org/index.php/ … ource-code
Cheers,
Adrian Pop/
- adrpo
- 885 Posts
- Index
- » Developer
- » OpenModelica development
- » Compiling OMEdit for Linux