-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[wt] Fix XML file installation path (#6925)
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index ca19b30..4765632 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -197,7 +197,11 @@ SET(CMAKE_INSTALL_DIR "${LIB_INSTALL_DIR}/cmake" CACHE STRING | ||
|
||
IF(WIN32) | ||
|
||
- SET(RUNDIR "c:/witty") # Does not apply to win32 | ||
+ if (NOT INSTALL_CONFIG_FILE_PATH) | ||
+ SET(RUNDIR "c:/witty") # Does not apply to win32 | ||
+ else() | ||
+ SET(RUNDIR ${INSTALL_CONFIG_FILE_PATH}) # Does not apply to win32 | ||
+ endif() | ||
|
||
IF(NOT DEFINED CONFIGDIR) | ||
SET(CONFIGDIR ${RUNDIR} CACHE STRING "Path for the configuration files") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: wt | ||
Version: 4.0.5 | ||
Version: 4.0.5-1 | ||
Homepage: https://github.com/emweb/wt | ||
Description: Wt is a C++ library for developing web applications | ||
Build-Depends: openssl, sqlite3, libpq, pango, glew, boost-date-time, boost-regex, boost-program-options, boost-signals, boost-system, boost-filesystem, boost-thread, boost-random, boost-multi-index, boost-signals2, boost-asio, boost-ublas, boost-conversion, boost-array, boost-smart-ptr, boost-tuple, boost-algorithm, boost-logic, boost-interprocess |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters