<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to HowtoBuildLibzip</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>Recent changes to HowtoBuildLibzip</description><atom:link href="https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 11 Mar 2025 10:44:40 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/feed" rel="self" type="application/rss+xml"/><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v9
+++ v10
@@ -17,7 +17,7 @@
 cmake --build . -t zlibstatic --config Release
 cmake --install . --config Release
 ```
-* Copy the contents of the install directory to  `xtcextern\x64\zlib`
+* Copy the contents of the install directory to  `xtcextern\&amp;lt;architecture&amp;gt;\zlib`
 * Building _libzip_ in the same command line as used above
 ```
 cd libzipsourcedir
&amp;lt;/architecture&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Tue, 11 Mar 2025 10:44:40 -0000</pubDate><guid>https://sourceforge.net3e56044868fbe063b169f8011c13b0b43e96334e</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -17,6 +17,7 @@
 cmake --build . -t zlibstatic --config Release
 cmake --install . --config Release
 ```
+* Copy the contents of the install directory to  `xtcextern\x64\zlib`
 * Building _libzip_ in the same command line as used above
 ```
 cd libzipsourcedir
@@ -25,4 +26,4 @@
 cmake .. -D BUILD_SHARED_LIBS=OFF
 cmake --build . --config Debug
 ```
-
+* Copy the contents of the install directory to `xtcextern\&amp;lt;architecture&amp;gt;\libzip`
&amp;lt;/architecture&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Tue, 11 Mar 2025 10:44:09 -0000</pubDate><guid>https://sourceforge.net473723f35aa823442ae5212cf31aae80fda883bb</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -23,5 +23,6 @@
 mkdir build
 cd build
 cmake .. -D BUILD_SHARED_LIBS=OFF
+cmake --build . --config Debug
 ```

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Mon, 10 Mar 2025 19:07:08 -0000</pubDate><guid>https://sourceforge.net25a8876ac2cea3cdae0c7fc4389768ac846efbcc</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -21,8 +21,7 @@
 ```
 cd libzipsourcedir
 mkdir build
-cmake .. 
 cd build
-cmake ..
+cmake .. -D BUILD_SHARED_LIBS=OFF
 ```

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Mon, 10 Mar 2025 19:06:31 -0000</pubDate><guid>https://sourceforge.net5f34a8e3cbc1b39b9c6b8bf9441c75289cf6755b</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -17,11 +17,11 @@
 cmake --build . -t zlibstatic --config Release
 cmake --install . --config Release
 ```
-* Building _libzip_ 
+* Building _libzip_ in the same command line as used above
 ```
 cd libzipsourcedir
 mkdir build
-cmake .. -D CMAKE_POLICY_DEFAULT_CMP0074=NEW -D ZLIB_ROOT=zlibsourcedir\install
+cmake .. 
 cd build
 cmake ..
 ```
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Mon, 10 Mar 2025 19:01:37 -0000</pubDate><guid>https://sourceforge.neta60e2b51025dcfd7f248ec4981924911fadc4f23</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -5,16 +5,24 @@
 ```
 cd zlibsourcedir
 mkdir build
+mkdir install
 cd build
+set CMAKE_INSTALL_PREFIX=&amp;lt;zlibsourcedir&amp;gt;\install
 cmake ..
 cmake --build . -t zlibstatic
+cmake --install . --config Debug
 ```
 * For release configuration use
 ```
 cmake --build . -t zlibstatic --config Release
+cmake --install . --config Release
 ```
 * Building _libzip_ 
 ```
-cmake .. -D CMAKE_POLICY_DEFAULT_CMP0074=NEW -D ZLIB_ROOT=C:\Users\martin\Documents\Projekte\zlib-1.3.1\build\Debug
+cd libzipsourcedir
+mkdir build
+cmake .. -D CMAKE_POLICY_DEFAULT_CMP0074=NEW -D ZLIB_ROOT=zlibsourcedir\install
+cd build
+cmake ..
 ```

&amp;lt;/zlibsourcedir&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Mon, 10 Mar 2025 18:45:41 -0000</pubDate><guid>https://sourceforge.netdad38233987475ad5e58c2cd461e2b3c8f0546d7</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,7 +1,7 @@
 # Building libzip and zlib on Windows for XTrackCAD #
 * Get the source code from https://github.com/madler/zlib/releases/tag/v1.3.1 and https://libzip.org/download/
  **Note** The source code for libzip is only available in tar.gz or tar.xz format. You will need a program like 7Zip to open these. 
-* Building zlib in default configuration eg. Debug
+* Building _zlib_ in default configuration eg. Debug
 ```
 cd zlibsourcedir
 mkdir build
@@ -13,3 +13,8 @@
 ```
 cmake --build . -t zlibstatic --config Release
 ```
+* Building _libzip_ 
+```
+cmake .. -D CMAKE_POLICY_DEFAULT_CMP0074=NEW -D ZLIB_ROOT=C:\Users\martin\Documents\Projekte\zlib-1.3.1\build\Debug
+```
+
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Mon, 10 Mar 2025 13:37:11 -0000</pubDate><guid>https://sourceforge.netfe0bf9ebab3d5f25779dc9c51285ff17a87f19fe</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,4 +1,4 @@
-# Building Libzip and zlib for XTrackCAD #
+# Building libzip and zlib on Windows for XTrackCAD #
 * Get the source code from https://github.com/madler/zlib/releases/tag/v1.3.1 and https://libzip.org/download/
  **Note** The source code for libzip is only available in tar.gz or tar.xz format. You will need a program like 7Zip to open these. 
 * Building zlib in default configuration eg. Debug
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Mon, 10 Mar 2025 12:50:11 -0000</pubDate><guid>https://sourceforge.net556d5f8251e0eb1a0710471cdaa9fc1f561413ba</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,4 +1,15 @@
 # Building Libzip and zlib for XTrackCAD #
 * Get the source code from https://github.com/madler/zlib/releases/tag/v1.3.1 and https://libzip.org/download/
  **Note** The source code for libzip is only available in tar.gz or tar.xz format. You will need a program like 7Zip to open these. 
-* 
+* Building zlib in default configuration eg. Debug
+```
+cd zlibsourcedir
+mkdir build
+cd build
+cmake ..
+cmake --build . -t zlibstatic
+```
+* For release configuration use
+```
+cmake --build . -t zlibstatic --config Release
+```
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Mon, 10 Mar 2025 12:49:45 -0000</pubDate><guid>https://sourceforge.net356fd0706be2d7cc97daf0a9fe2b8e29dfb549b6</guid></item><item><title>HowtoBuildLibzip modified by Martin Fischer</title><link>https://sourceforge.net/p/xtrkcad-fork/wiki/HowtoBuildLibzip/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="building-libzip-and-zlib-for-xtrackcad"&gt;Building Libzip and zlib for XTrackCAD&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Get the source code from &lt;a href="https://github.com/madler/zlib/releases/tag/v1.3.1" rel="nofollow"&gt;https://github.com/madler/zlib/releases/tag/v1.3.1&lt;/a&gt; and &lt;a href="https://libzip.org/download/" rel="nofollow"&gt;https://libzip.org/download/&lt;/a&gt;&lt;br/&gt;
&lt;strong&gt;Note&lt;/strong&gt; The source code for libzip is only available in tar.gz or tar.xz format. You will need a program like 7Zip to open these. &lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Fischer</dc:creator><pubDate>Mon, 10 Mar 2025 12:06:33 -0000</pubDate><guid>https://sourceforge.netcc522f31393a19bf30e47b1e2130018c1650faf4</guid></item></channel></rss>