File: install_testxslt.diff

package info (click to toggle)
xalan 1.12-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,336 kB
  • sloc: cpp: 145,645; xml: 1,523; ansic: 434; sh: 27; makefile: 17
file content (20 lines) | stat: -rw-r--r-- 752 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Add TestXSLT to installed binaries
 Debian has shipped the TestXSLT binary as /usr/bin/xalan, so we'll continue
 to do so.
Author: Bill Blough <bblough@debian.org>
Forwarded: not-needed
Last-Update: 2020-09-20
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
diff --git a/src/xalanc/TestXSLT/CMakeLists.txt b/src/xalanc/TestXSLT/CMakeLists.txt
index 20f9ff2..2dd879a 100644
--- a/src/xalanc/TestXSLT/CMakeLists.txt
+++ b/src/xalanc/TestXSLT/CMakeLists.txt
@@ -20,3 +20,7 @@
 add_executable(TestXSLT process.cpp)
 target_link_libraries(TestXSLT XalanC::XalanC)
 set_target_properties(TestXSLT PROPERTIES FOLDER "Tests")
+
+install(TARGETS TestXSLT
+  RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
+  COMPONENT "runtime")