Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • Datovka Datovka
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 106
    • Issues 106
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 3
    • Merge requests 3
  • Deployments
    • Deployments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Datovka projects
  • DatovkaDatovka
  • Wiki
  • compilation

compilation · Changes

Page history
Described the process of building libraries for Windows. authored Jun 02, 2021 by Karel Slaný's avatar Karel Slaný
Hide whitespace changes
Inline Side-by-side
compilation.md
View page @ 856f66aa
......@@ -179,6 +179,47 @@ The following script builds the .dmg package if the application has already been
./scripts/build_dmg.sh
```
### Windows - Building Libraries
The libraries are built using MinGW on Linux.
The following packages should be installed:
``` shell
apt install git curl
```
> Packages like `gftp`, `vim-gtk3` or `mc` may also become handy.
#### 32-Bit Libraries
Ubuntu 16.04 is used to build the 32-bit libraries. The following packages are needed:
``` shell
apt install gcc-mingw-w64-i686 g++-mingw-w64-i686 autoconf automake make libtool
```
To build libdatovka use the command:
``` shell
mkdir libds; cd libs
../scripts/build_libdatovka_mingw.sh --i386
```
#### 64-Bit Libraries
Ubuntu 20.04 is used to build the 64-bit libraries. The following packages are needed:
``` shell
apt install gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 autoconf automake make libtool
```
To build libdatovka use the command:
``` shell
mkdir libds; cd libs
../scripts/build_libdatovka_mingw.sh --x86_64
```
### Windows - Building the Application
Building procedure of the Datovka application for Windows requires:
......
Clone repository
  • accessibility code
  • accounts db
  • behaviour recommendations
  • best practice
  • cli send msg dlg
  • cli
  • code style
  • compilation
  • data structures
  • help
  • Home
  • localisation
  • manual test scenarios
  • manual
  • mep login
View All Pages