[Kde-bindings] playground/bindings/kimono
Richard Dale
Richard_Dale at tipitina.demon.co.uk
Fri Jan 12 18:16:59 UTC 2007
SVN commit 622720 by rdale:
* Change the cmake build to use gmcs rather than mcs
* Added a QDBusReply class using a generic type
CCMAIL: kde-bindings at kde.org
M +10 -10 CMakeLists.txt
M +5 -0 ChangeLog
A qdbus/QDBusReply.cs
--- trunk/playground/bindings/kimono/CMakeLists.txt #622719:622720
@@ -12,20 +12,20 @@
MESSAGE (STATUS "Looking for SMOKE library - found - ${SMOKE_PATH}")
ENDIF (NOT SMOKE_PATH)
-# find 'mcs'
-MESSAGE (STATUS "Looking for mcs")
-FIND_PROGRAM (MCS_PATH mcs)
-IF (NOT MCS_PATH)
- MESSAGE (STATUS "Looking for mcs - not found")
- MESSAGE (FATAL_ERROR "mcs was not found on your system")
-ELSE (NOT MCS_PATH)
- MESSAGE (STATUS "Looking for mcs - found - ${MCS_PATH}")
-ENDIF (NOT MCS_PATH)
+# find 'gmcs'
+MESSAGE (STATUS "Looking for gmcs")
+FIND_PROGRAM (GMCS_PATH gmcs)
+IF (NOT GMCS_PATH)
+ MESSAGE (STATUS "Looking for gmcs - not found")
+ MESSAGE (FATAL_ERROR "gmcs was not found on your system")
+ELSE (NOT GMCS_PATH)
+ MESSAGE (STATUS "Looking for gmcs - found - ${GMCS_PATH}")
+ENDIF (NOT GMCS_PATH)
INCLUDE_DIRECTORIES (${QT_INCLUDES})
ADD_LIBRARY (qyoto SHARED qyoto.cpp handlers.cpp)
TARGET_LINK_LIBRARIES (qyoto smokeqt ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
-ADD_CUSTOM_TARGET (qt-dotnet ALL ${MCS_PATH} -unsafe -warn:0 -out:qt-dotnet.dll -target:library SmokeInvocation.cs Qyoto.cs core/*.cs gui/*.cs network/*.cs sql/*.cs xml/*.cs svg/*.cs opengl/*.cs qdbus/*.cs)
+ADD_CUSTOM_TARGET (qt-dotnet ALL ${GMCS_PATH} -unsafe -warn:0 -out:qt-dotnet.dll -target:library SmokeInvocation.cs Qyoto.cs core/*.cs gui/*.cs network/*.cs sql/*.cs xml/*.cs svg/*.cs opengl/*.cs qdbus/*.cs)
ADD_DEPENDENCIES (qt-dotnet qyoto)
--- trunk/playground/bindings/kimono/ChangeLog #622719:622720
@@ -1,3 +1,8 @@
+2007-12-01 Richard Dale <rdale at foton.es>
+
+ * Change the cmake build to use gmcs rather than mcs
+ * Added a QDBusReply class using a generic type
+
2006-12-07 Richard Dale <rdale at foton.es>
* Use QDate, QDateTime and QTime for dates and times, not the C#
More information about the Kde-bindings
mailing list