<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/test/unit/CMakeLists.txt, branch inverse-fix</title>
<subtitle>Forked from https://github.com/OSGeo/PROJ</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/'/>
<entry>
<title>Use external gtest by default when detected</title>
<updated>2022-02-01T14:44:46+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2022-02-01T14:22:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=e3efedd7394a01e6c8511f6ac215e822d6fc5b62'/>
<id>e3efedd7394a01e6c8511f6ac215e822d6fc5b62</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: revise how we deal with symbol export and static builds</title>
<updated>2021-10-23T14:27:30+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-10-23T14:17:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=6e9b324ab7bf5909df7e68409e060282db14fa54'/>
<id>6e9b324ab7bf5909df7e68409e060282db14fa54</id>
<content type='text'>
- Remove the explicit PROJ_MSVC_DLL_IMPORT symbol used for importing
  symbols from a MSVC .dll: by default on MSVC, we use
  now __declspec(dllimport), unless PROJ_MSVC_DLL_EXPORT is defined
  by PROJ at build time. This makes it easier for users: they
  don't have to define anything special. This simplifies in particular
  the build of our binaries
- For static builds, export -DPROJ_DLL= as public, so that users
  that import PROJ through CMake mechanism don't have to do it
  manually.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove the explicit PROJ_MSVC_DLL_IMPORT symbol used for importing
  symbols from a MSVC .dll: by default on MSVC, we use
  now __declspec(dllimport), unless PROJ_MSVC_DLL_EXPORT is defined
  by PROJ at build time. This makes it easier for users: they
  don't have to define anything special. This simplifies in particular
  the build of our binaries
- For static builds, export -DPROJ_DLL= as public, so that users
  that import PROJ through CMake mechanism don't have to do it
  manually.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix database access across fork() when SQLite3 doesn't use pread[64]() (fixes #2843)</title>
<updated>2021-09-07T13:36:11+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-09-07T12:47:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=ce080251225d16e11e139a5ebe07cf608fe022b2'/>
<id>ce080251225d16e11e139a5ebe07cf608fe022b2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: remove external nlohmann_json from INTERFACE_LINK_LIBRARIES target</title>
<updated>2021-07-14T11:46:32+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2021-07-14T11:33:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=dec2eac09811166761a625bb3efb1aeab4b96c27'/>
<id>dec2eac09811166761a625bb3efb1aeab4b96c27</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake build: add a NLOHMANN_JSON_ORIGIN=auto/external/internal setting allowing to choose which nlohmann/json to use</title>
<updated>2021-04-30T11:27:25+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-04-23T12:17:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=29ac85d55273e83a3ada19037959ae7c7823f5b7'/>
<id>29ac85d55273e83a3ada19037959ae7c7823f5b7</id>
<content type='text'>
Co-authored-by: Mike Taves &lt;mwtoews@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Mike Taves &lt;mwtoews@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>proj.h: add PROJ_COMPUTE_VERSION, PROJ_VERSION_NUMBER, PROJ_AT_LEAST_VERSION macros</title>
<updated>2021-03-17T13:00:25+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-03-17T12:47:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=130d70228f9985a3365ca5bbc64057648134e2f7'/>
<id>130d70228f9985a3365ca5bbc64057648134e2f7</id>
<content type='text'>
Makes it easier for users to test if they build against a PROJ version
later than a given x.y.z version.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Makes it easier for users to test if they build against a PROJ version
later than a given x.y.z version.
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: Prefer keyword signature of target_link_libraries command</title>
<updated>2021-02-14T09:21:21+00:00</updated>
<author>
<name>Mateusz Łoskot</name>
<email>mateusz@loskot.net</email>
</author>
<published>2021-02-14T09:21:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=5fc8ab2de9f9e44f593e477defdf9b474871a5d2'/>
<id>5fc8ab2de9f9e44f593e477defdf9b474871a5d2</id>
<content type='text'>
Closes #2515
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #2515
</pre>
</div>
</content>
</entry>
<entry>
<title>Split test_operation.cpp in two parts</title>
<updated>2020-12-12T21:34:11+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2020-12-12T21:23:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=49c6a49d83a3b29836a930d296a9f239d2860de0'/>
<id>49c6a49d83a3b29836a930d296a9f239d2860de0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove src/transform.cpp and related tests</title>
<updated>2020-11-20T15:40:40+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2020-11-14T10:28:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=e2dd223c5601b387cd622b88583e857b03e9fade'/>
<id>e2dd223c5601b387cd622b88583e857b03e9fade</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a +proj=tinshift for triangulation-based transformations</title>
<updated>2020-09-30T09:26:48+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2020-07-01T12:09:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=164c85cc8e7f4515c7c4da7a85fe75c4a21fafec'/>
<id>164c85cc8e7f4515c7c4da7a85fe75c4a21fafec</id>
<content type='text'>
Implements RFC-6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implements RFC-6
</pre>
</div>
</content>
</entry>
</feed>
