You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`mkdir build && cd build` to create out-of-source build directory.
60
60
61
-
`cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local` to prepare build files for installation to '/usr/local'.
61
+
`cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local` to prepare build files for installation to `/usr/local`.
62
62
63
63
`make` to compile all files.
64
64
65
65
`make install` to install executable and resources to `DESTDIR`. Default `DESTDIR` value is set by `CMAKE_INSTALL_PREFIX` variable.
66
66
67
-
Using SCons:
67
+
#### Using SCons:
68
68
69
69
`scons` to compile all files and place executable file in `build/`.
70
70
@@ -76,3 +76,4 @@ ENABLE\_NLS - compile with gettext support. Enabled by default.
76
76
77
77
USE\_GTK3 - use GTK3 instead of GTK2. Enabled by default.
78
78
79
+
PREFER\_VERSION\_FILE - read version information from file instead of using GIT. Disabled by default. This option enables unconditional `.version` file usage. `.version` file is included in release source archives and is a simple text file containing the following information in four lines: major/minor version, revision, commit hash and commit date.
0 commit comments