[mapguide-commits] r10000 - trunk/MgDev/Bindings/src/Bindings

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Oct 31 10:01:49 PDT 2022


Author: jng
Date: 2022-10-31 10:01:48 -0700 (Mon, 31 Oct 2022)
New Revision: 10000

Modified:
   trunk/MgDev/Bindings/src/Bindings/CMakeLists.txt
Log:
Common libs subset on Linux does not need to build Java/Php

Modified: trunk/MgDev/Bindings/src/Bindings/CMakeLists.txt
===================================================================
--- trunk/MgDev/Bindings/src/Bindings/CMakeLists.txt	2022-10-29 13:35:46 UTC (rev 9999)
+++ trunk/MgDev/Bindings/src/Bindings/CMakeLists.txt	2022-10-31 17:01:48 UTC (rev 10000)
@@ -16,8 +16,9 @@
 # We don't build this in a regular full end-to-end MG build
 if (MG_COMMON_SUBSET_ONLY)
     add_subdirectory(DotNet)
-endif (MG_COMMON_SUBSET_ONLY)
-if (WITH_JAVA)
-    add_subdirectory(Java)
-endif (WITH_JAVA)
-add_subdirectory(Php)
\ No newline at end of file
+else (MG_COMMON_SUBSET_ONLY)
+    if (WITH_JAVA)
+        add_subdirectory(Java)
+    endif (WITH_JAVA)
+    add_subdirectory(Php)
+endif (MG_COMMON_SUBSET_ONLY)
\ No newline at end of file



More information about the mapguide-commits mailing list