diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-06-20 15:11:50 +0200 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2018-06-20 20:24:14 +0200 |
| commit | b87b59106879188ffc684a41a9de638ac5fd02bf (patch) | |
| tree | 0abc61286d78e43d8309027d298f1f1da89e0ed7 /test/unit/CMakeLists.txt | |
| parent | d742d57a6b8c3c48bca96a215a8304dbe1ceccf8 (diff) | |
| download | PROJ-b87b59106879188ffc684a41a9de638ac5fd02bf.tar.gz PROJ-b87b59106879188ffc684a41a9de638ac5fd02bf.zip | |
Add test for proj_errno_string()
Diffstat (limited to 'test/unit/CMakeLists.txt')
| -rw-r--r-- | test/unit/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt index a22665f8..d6f6b068 100644 --- a/test/unit/CMakeLists.txt +++ b/test/unit/CMakeLists.txt @@ -58,6 +58,15 @@ target_link_libraries(proj_test_unit ${PROJ_LIBRARIES}) add_test(NAME proj_test_unit COMMAND proj_test_unit) +add_executable(proj_errno_string_test + main.cpp + proj_errno_string_test.cpp) +target_link_libraries(proj_errno_string_test + gtest + ${PROJ_LIBRARIES}) +add_test(NAME proj_errno_string_test COMMAND proj_errno_string_test) + + if (MSVC AND BUILD_LIBPROJ_SHARED) # ph_phi2_test not compatible of a .dll build else() |
