Topic: Cmake
intall debian pak
apt install git cmake clang qtcreator qttools5-dev-tools qttools5-dev libqt5svg5-dev libqt5x11extras5-dev extra-cmake-modules
is not up to date: cmake
https://github.com/Kitware/CMake/
sudo ./cmake.sh --prefix=/usr/local/ --exclude-subdir
is not up to date: extra-cmake-modules
https://invent.kde.org/frameworks/extra-cmake-modules
git clone https://invent.kde.org/frameworks/extra-cmake-modules.git && cd extra-cmake-modules
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr .. && make
sudo make install
is not up to date:qt
https://wiki.qt.io/Building_Qt_5_from_Git
git clone https://code.qt.io/qt/qt5.git
cd qt5
git checkout 5.15.2
perl init-repository
#or
#git submodule update --init --recursive
mkdir qt5-build && cd qt5-build
../configure -developer-build -opensource -nomake examples -nomake tests
make -j15
---------------------------------------------------------------------------------------------------------------------------------------
build instructions of qelectrotech
git clone --recursive https://github.com/qelectrotech/qelectrotech-source-mirror.git qet && cd qet
mkdir build && cd build
cmake ..
make -j15
run:
./qelectrotech
questions I would like to be answered:
can you explain to me why the language files are not in a .qrc file?