How to compile SimulIDE?
Quote from francisco4ever on November 25, 2024, 12:02 amHow to compile SimulIDE??? On QT or even on the console for Windows?
How to compile SimulIDE??? On QT or even on the console for Windows?
Quote from arcachofo on November 25, 2024, 4:54 amHi.
You can compile Simulide like any other Qt application.
Using QT Creator or in a terminal cd to build_XX folder, then:$ qmake
$ makeYou must install all depenedencies:
- Qt5Core
- Qt5Gui
- Qt5Xml
- Qt5svg
- Qt5Widgets
- Qt5Concurrent
- Qt5 Multimedia
- Qt5 Multimedia Plugins
- Qt5 Serialport
Hi.
You can compile Simulide like any other Qt application.
Using QT Creator or in a terminal cd to build_XX folder, then:
$ qmake
$ make
You must install all depenedencies:
- Qt5Core
- Qt5Gui
- Qt5Xml
- Qt5svg
- Qt5Widgets
- Qt5Concurrent
- Qt5 Multimedia
- Qt5 Multimedia Plugins
- Qt5 Serialport
Quote from n3645 on December 19, 2024, 5:17 amHi. In old forum I believe I have created some detailed compilation guide, but I can't find it anymore.
I recently realized that there is new forum as I didn't used this project for a long time...
Edit: I have found it.
https://simulide.forumotion.com/t71-for-build-howto
However, I do not know this is still valid. I will try myself on new Linux distro...
Hi. In old forum I believe I have created some detailed compilation guide, but I can't find it anymore.
I recently realized that there is new forum as I didn't used this project for a long time...
Edit: I have found it.
https://simulide.forumotion.com/t71-for-build-howto
However, I do not know this is still valid. I will try myself on new Linux distro...
Quote from n3645 on December 19, 2024, 6:59 amsudo apt install qt5-qmake qt5-default qttools5-dev-tools sudo apt install libqt5svg5-dev libqt5serialport5-dev qtmultimedia5-dev
This installed all what is needed on KDE Neon. Then:
qmake make all -j8
Parameter -j8 will force 8 jobs when compile.
That should be all.
sudo apt install qt5-qmake qt5-default qttools5-dev-tools
sudo apt install libqt5svg5-dev libqt5serialport5-dev qtmultimedia5-dev
This installed all what is needed on KDE Neon. Then:
qmake
make all -j8
Parameter -j8 will force 8 jobs when compile.
That should be all.