Author: rinrab
Date: Thu Jun 27 11:56:42 2024
New Revision: 1918703
URL: http://svn.apache.org/viewvc?rev=1918703&view=rev
Log:
On the 'cmake' branch: Follow-up to r1918702: Correctly wrap source list in
the CMakeLists.txt.ezt template to make the sources to be without double
newlines between each other.
* build/generator/templates/CMakeLists.txt.ezt
(): Fix wrapping in a 'for' loop of sources.
Modified:
subversion/branches/cmake/build/generator/templates/CMakeLists.txt.ezt
Modified: subversion/branches/cmake/build/generator/templates/CMakeLists.txt.ezt
URL:
http://svn.apache.org/viewvc/subversion/branches/cmake/build/generator/templates/CMakeLists.txt.ezt?rev=1918703&r1=1918702&r2=1918703&view=diff
==============================================================================
--- subversion/branches/cmake/build/generator/templates/CMakeLists.txt.ezt
(original)
+++ subversion/branches/cmake/build/generator/templates/CMakeLists.txt.ezt Thu
Jun 27 11:56:42 2024
@@ -3,10 +3,10 @@ cmake_minimum_required(VERSION 3.12)
project("Subversion")
[for targets][is targets.type "lib"]
add_library([targets.name][for targets.sources]
- [targets.sources]
-[end])
+ [targets.sources][end]
+)
[end][is targets.type "exe"]
add_executable([targets.name][for targets.sources]
- [targets.sources]
-[end])
+ [targets.sources][end]
+)
[end][end]