xca/INSTALL.qmake
Christian Hohnstädt fbee826e56 Switch from Qt4 to Qt5 in Travis docker file
Update other documentation files
2021-05-11 17:04:07 +02:00

23 lines
550 B
Plaintext

Next to the usual configuration script,
there is an alternative way to build xca.
At least on unix, one can use qmake to create a makefile
for building. Maybe this will help, if you have a weired setup.
$ qmake -o makefile
creates the makefile. I recommend "makefile" to not overwrite "Makefile"
and also assures, that it is used instead of the original Makefile.
Now you need to create the file Local.h
$ cat >local.h <<EOF
#define XCA_VERSION "`cat VERSION`"
EOF
or you call ./configure to create it for you.
now just build XCA with
$ make