forked from MapServer/MapServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request MapServer#7057 from rouault/remove_exec_program
CMake and CI adjustments
- Loading branch information
Showing
4 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.0...3.23) | ||
cmake_minimum_required(VERSION 3.0...3.29) | ||
|
||
project (MapServer) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/bin/sh -ex | ||
cd ${CSHARP_MAPSCRIPT_SO} | ||
echo .: Testing shpdump.exe :. | ||
mono shpdump.exe ../../../../tests/point.shp | ||
LC_ALL=C mono shpdump.exe ../../../../tests/point.shp | ||
echo .: Testing drawmap.exe :. | ||
mono drawmap.exe ../../../../tests/test.map ./map.png | ||
LC_ALL=C mono drawmap.exe ../../../../tests/test.map ./map.png | ||
echo .: Testing shapeinfo.exe :. | ||
mono shapeinfo.exe ../../../../tests/point.shp | ||
LC_ALL=C mono shapeinfo.exe ../../../../tests/point.shp | ||
echo .: Testing getbytes.exe :. | ||
mono getbytes.exe ../../../../tests/test.map test_csharp2.png | ||
LC_ALL=C mono getbytes.exe ../../../../tests/test.map test_csharp2.png | ||
echo .: Testing RFC24.exe :. | ||
mono RFC24.exe ../../../../tests/test.map | ||
LC_ALL=C mono RFC24.exe ../../../../tests/test.map |