Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
9cb8cff3
Commit
9cb8cff3
authored
Jul 28, 2015
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-8296 MSVS 2013 & WiX 3.9
Support for VS2013 and WiX 3.9 (patch by Andrey Kuznetsov)
parent
4188ba9c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
win/packaging/CMakeLists.txt
win/packaging/CMakeLists.txt
+1
-0
win/packaging/ca/CMakeLists.txt
win/packaging/ca/CMakeLists.txt
+5
-1
No files found.
win/packaging/CMakeLists.txt
View file @
9cb8cff3
...
...
@@ -24,6 +24,7 @@ FIND_PATH(WIX_DIR heat.exe
"$ENV{ProgramFiles}/Windows Installer XML v3/bin"
"$ENV{ProgramFiles}/Windows Installer XML v3.5/bin"
"$ENV{ProgramFiles}/Windows Installer XML v3.6/bin"
"$ENV{ProgramFiles}/WiX Toolset v3.9/bin"
"$ENV{WIX}/bin"
)
...
...
win/packaging/ca/CMakeLists.txt
View file @
9cb8cff3
...
...
@@ -36,6 +36,9 @@ ELSEIF(MSVC_VERSION EQUAL 1500)
ELSEIF
(
MSVC_VERSION EQUAL 1600 OR MSVC_VERSION EQUAL 1700
)
SET
(
WIX35_MSVC_SUFFIX
"_2010"
)
SET
(
WIX36_MSVC_SUFFIX
"VS2010"
)
ELSEIF
(
MSVC_VERSION EQUAL 1800 OR MSVC_VERSION EQUAL 1900
)
SET
(
WIX35_MSVC_SUFFIX
"_2013"
)
SET
(
WIX36_MSVC_SUFFIX
"VS2013"
)
ELSE
()
# When next VS is out, add the correct version here
MESSAGE
(
FATAL_ERROR
"Unknown VS version"
)
...
...
@@ -47,7 +50,8 @@ FIND_LIBRARY(WIX_WCAUTIL_LIBRARY
wcautil
PATHS
${
WIX_DIR
}
/../SDK/lib
${
WIX_DIR
}
/../SDK/
${
WIX36_MSVC_SUFFIX
}
/lib/
${
WIX36_ARCH_SUFFIX
}
)
${
WIX_DIR
}
/../SDK/
${
WIX36_MSVC_SUFFIX
}
/lib/
${
WIX36_ARCH_SUFFIX
}
)
FIND_LIBRARY
(
WIX_DUTIL_LIBRARY
NAMES dutil
${
WIX_ARCH_SUFFIX
}
dutil
${
WIX35_MSVC_SUFFIX
}${
WIX_ARCH_SUFFIX
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment