Changes between Version 65 and Version 66 of InstallingFACT++


Ignore:
Timestamp:
12/27/20 12:31:39 (4 years ago)
Author:
tbretz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallingFACT++

    v65 v66  
    231231
    232232As a default, QT4 is searched. if Qt4 (or any of the required libraries: Core Gui OpenGL Sql Xml) is not found, cmake will try to find Qt5 and use Qt5 instead. Note that the project at the moment compiles with Qt5 but might not work! Qt5 can be forced with '''-DFORCE_QT5=1'''
     233
     234== MySQL ==
     235
     236Particularly systems that use MariaDB in favor of MySQL sometimes pretend to have mysql installed but compiling or linking will fail. In this case download the latest MySQL binaries from https://dev.mysql.com/downloads/mysql/ (You can use the minimal version).
     237
     238After you extracted the archive, call cmake with the options
     239{{{
     240-DMYSQL_INCLUDE_DIRS=~/mysql-8.0.22-linux-glibc2.17-x86_64-minimal/include
     241-DMYSQL_LIBRARY_DIRS=~/mysql-8.0.22-linux-glibc2.17-x86_64-minimal/lib
     242}}}
     243where the provided path is the extacted directory.
     244