Subversion Repositories tpanel

Rev

Rev 359 | Rev 381 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 359 Rev 373
Line 27... Line 27...
27
To install Qt I recommend to download the open source version from [Open Source Development](https://www.qt.io/download-open-source). However: Some Linux distributions are coming with Qt included. If you want to use this version make sure, to install the Qt6 packages.
27
To install Qt I recommend to download the open source version from [Open Source Development](https://www.qt.io/download-open-source). However: Some Linux distributions are coming with Qt included. If you want to use this version make sure, to install the Qt6 packages.
28
 
28
 
29
## Compile for Linux desktop
29
## Compile for Linux desktop
30
First [download the source](https://github.com/TheLord45/tpanel) into a directory. Then enter the directory and type the following commands.
30
First [download the source](https://github.com/TheLord45/tpanel) into a directory. Then enter the directory and type the following commands.
31
 
31
 
32
    $ mkdir build
-
 
33
    $ cmake -B build -DCMAKE_PREFIX_PATH="/<path>/<to>/Qt/6.5.2/gcc_64/lib/cmake"
32
    $ cmake -B build -DCMAKE_PREFIX_PATH="/<path>/<to>/Qt/6.x.x/gcc_64/lib/cmake"
34
    $ cd build
33
    $ cd build
35
    $ make
34
    $ make
36
    $ sudo make install
35
    $ sudo make install
37
 
36
 
38
> Replace `<path>/<to>/` with the path to your Qt installation (usualy `/opt/Qt`).
37
> Replace `<path>/<to>/` with the path to your Qt installation (usualy `/opt/Qt`).
39
 
38
 
-
 
39
## Compile on MacOSX
-
 
40
First [download the source](https://github.com/TheLord45/tpanel) into a directory. Then enter the directory and type the following commands.
-
 
41
 
-
 
42
    $ cmake -B build -DCMAKE_PREFIX_PATH="/<path>/<to>/Qt/6.x.x/macos/lib/cmake:/<path>/<to>/homebrew/lib/cmake"
-
 
43
    $ cd build
-
 
44
    $ ninja
-
 
45
    $ sudo ninja --target install
-
 
46
 
-
 
47
> Replace `<path>/<to>/` with the path to your Qt installation and to homebrew (usualy `$HOME/Qt`, `/opt/homebrew`).
-
 
48
 
40
If everything compiled successful and installed, you can start the application. There is a setup dialog included. It depends on the operating system of how this setup looks like.
49
If everything compiled successful and installed, you can start the application. There is a setup dialog included. It depends on the operating system of how this setup looks like.
41
 
50
 
42
## Compile for other operating systems
51
## Compile for other operating systems
43
 
52
 
44
- [Compile for Android](https://github.com/TheLord45/tpanel/blob/main/documentation/build_android.md)
53
- [Compile for Android](https://github.com/TheLord45/tpanel/blob/main/documentation/build_android.md)