Skip to content

Commit f88f5fe

Browse files
committed
Add TUI programs to the list for installation during the CMake build.
* build/generator/gen_cmake.py (Generator::write): Update the if condition so install_target would be True for the targets are listed as 'tui'. git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1933103 13f79535-47bb-0310-9956-ffa450edef68
1 parent e3c320a commit f88f5fe

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

build/generator/gen_cmake.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ def write(self):
208208
else:
209209
msvc_libs.append(lib)
210210

211-
if isinstance(target, gen_base.TargetLib) or target.install == "bin":
211+
if isinstance(target, gen_base.TargetLib) or target.install in ["bin",
212+
"tui"]:
212213
install_target = True
213214
else:
214215
install_target = False

0 commit comments

Comments
 (0)