[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[certi-cvs] applications/XPlaneHLAPlugin CMakeLists.txt Fin...
From: |
certi-cvs |
Subject: |
[certi-cvs] applications/XPlaneHLAPlugin CMakeLists.txt Fin... |
Date: |
Thu, 25 Jun 2009 18:32:57 +0000 |
CVSROOT: /sources/certi
Module name: applications
Changes by: Adelantado <adele> 09/06/25 18:32:57
Modified files:
XPlaneHLAPlugin: CMakeLists.txt FindXPlane.cmake
XPlaneHLAPlugin/XPlane_Cde: CMakeLists.txt XP_RTData.cpp
XP_Trace.h
XPlaneHLAPlugin/XPlane_Out: CMakeLists.txt
XPlaneHLAPlugin/XPlane_PhiDget: CMakeLists.txt
XPlaneHLAPlugin/XPlane_Trace: CMakeLists.txt XP_RTData.cpp
XP_Trace.h
Log message:
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/CMakeLists.txt?cvsroot=certi&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/FindXPlane.cmake?cvsroot=certi&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/XPlane_Cde/CMakeLists.txt?cvsroot=certi&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/XPlane_Cde/XP_RTData.cpp?cvsroot=certi&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/XPlane_Cde/XP_Trace.h?cvsroot=certi&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/XPlane_Out/CMakeLists.txt?cvsroot=certi&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/XPlane_PhiDget/CMakeLists.txt?cvsroot=certi&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/XPlane_Trace/CMakeLists.txt?cvsroot=certi&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/XPlane_Trace/XP_RTData.cpp?cvsroot=certi&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/XPlane_Trace/XP_Trace.h?cvsroot=certi&r1=1.3&r2=1.4
Patches:
Index: CMakeLists.txt
===================================================================
RCS file: /sources/certi/applications/XPlaneHLAPlugin/CMakeLists.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- CMakeLists.txt 6 Nov 2008 08:01:59 -0000 1.4
+++ CMakeLists.txt 25 Jun 2009 18:32:56 -0000 1.5
@@ -48,7 +48,9 @@
#########################################################################
# Call i.e. INCLUDE the CERTI usage configuration
#########################################################################
-INCLUDE(UseCERTI)
+FIND_PACKAGE(RTI REQUIRED)
+INCLUDE_DIRECTORIES(${RTI_INCLUDE_DIR})
+ADD_DEFINITIONS(${RTI_DEFINITIONS})
#########################################################################
# CPack specific Configuration
Index: FindXPlane.cmake
===================================================================
RCS file: /sources/certi/applications/XPlaneHLAPlugin/FindXPlane.cmake,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- FindXPlane.cmake 6 Nov 2008 08:02:00 -0000 1.2
+++ FindXPlane.cmake 25 Jun 2009 18:32:56 -0000 1.3
@@ -1,3 +1,8 @@
+MACRO(MESSAGE_QUIETLY QUIET TYPE MSG)
+ IF(NOT ${QUIET})
+ MESSAGE(${TYPE} "${MSG}")
+ ENDIF(NOT ${QUIET})
+ENDMACRO(MESSAGE_QUIETLY QUIET TYPE MSG)
#########################################################################
#Look for Xplane.exe
#########################################################################
Index: XPlane_Cde/CMakeLists.txt
===================================================================
RCS file:
/sources/certi/applications/XPlaneHLAPlugin/XPlane_Cde/CMakeLists.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- XPlane_Cde/CMakeLists.txt 6 Nov 2008 08:02:01 -0000 1.1
+++ XPlane_Cde/CMakeLists.txt 25 Jun 2009 18:32:57 -0000 1.2
@@ -20,7 +20,7 @@
# Generic CMake executable target
###################################
ADD_LIBRARY(${EXE_NAME} ${SRC_LIST})
-TARGET_LINK_LIBRARIES (${EXE_NAME} ${CERTI_LIBRARIES} ${XPLANE_XPLM_LIBRARY})
+TARGET_LINK_LIBRARIES (${EXE_NAME} ${RTI_LIBRARIES} ${XPLANE_XPLM_LIBRARY})
INSTALL(TARGETS ${EXE_NAME} RUNTIME DESTINATION bin)
add_custom_command(TARGET ${EXE_NAME}
Index: XPlane_Cde/XP_RTData.cpp
===================================================================
RCS file: /sources/certi/applications/XPlaneHLAPlugin/XPlane_Cde/XP_RTData.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- XPlane_Cde/XP_RTData.cpp 6 Nov 2008 08:02:02 -0000 1.1
+++ XPlane_Cde/XP_RTData.cpp 25 Jun 2009 18:32:57 -0000 1.2
@@ -34,7 +34,7 @@
const RTI::AttributeHandleValuePairSet& theAttributes,
//Attributs list
const char
*theTag) //Tag
Name Federate
throw ( RTI::ObjectNotKnown,
RTI::AttributeNotKnown,
-
RTI::FederateOwnsAttributes,
RTI::InvalidFederationTime,
+
RTI::FederateOwnsAttributes,
RTI::FederateInternalError)
{
RTI::ULong nbVPS= theAttributes.size();
Index: XPlane_Cde/XP_Trace.h
===================================================================
RCS file: /sources/certi/applications/XPlaneHLAPlugin/XPlane_Cde/XP_Trace.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- XPlane_Cde/XP_Trace.h 6 Nov 2008 08:02:03 -0000 1.1
+++ XPlane_Cde/XP_Trace.h 25 Jun 2009 18:32:57 -0000 1.2
@@ -61,7 +61,7 @@
const RTI::AttributeHandleValuePairSet& theAttributes,
const char
*theTag)
throw ( RTI::ObjectNotKnown,
RTI::AttributeNotKnown,
-
RTI::FederateOwnsAttributes,
RTI::InvalidFederationTime,
+
RTI::FederateOwnsAttributes,
RTI::FederateInternalError);
private:
Index: XPlane_Out/CMakeLists.txt
===================================================================
RCS file:
/sources/certi/applications/XPlaneHLAPlugin/XPlane_Out/CMakeLists.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- XPlane_Out/CMakeLists.txt 6 Nov 2008 08:02:03 -0000 1.1
+++ XPlane_Out/CMakeLists.txt 25 Jun 2009 18:32:57 -0000 1.2
@@ -15,7 +15,7 @@
###################################
ADD_LIBRARY(${EXE_NAME} ${SRC_LIST})
TARGET_LINK_LIBRARIES (${EXE_NAME}
- ${CERTI_LIBRARIES}
+ ${RTI_LIBRARIES}
${XPLANE_LIBRARIES} )
INSTALL(TARGETS ${EXE_NAME}
RUNTIME DESTINATION bin
Index: XPlane_PhiDget/CMakeLists.txt
===================================================================
RCS file:
/sources/certi/applications/XPlaneHLAPlugin/XPlane_PhiDget/CMakeLists.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- XPlane_PhiDget/CMakeLists.txt 6 Nov 2008 08:02:04 -0000 1.1
+++ XPlane_PhiDget/CMakeLists.txt 25 Jun 2009 18:32:57 -0000 1.2
@@ -20,7 +20,7 @@
###################################
ADD_EXECUTABLE(${EXE_NAME} ${SRC_LIST})
TARGET_LINK_LIBRARIES (${EXE_NAME}
- ${CERTI_LIBRARIES}
+ ${RTI_LIBRARIES}
${LibPhiDget_LIBRARY} )
INSTALL(TARGETS ${EXE_NAME}
RUNTIME DESTINATION bin
Index: XPlane_Trace/CMakeLists.txt
===================================================================
RCS file:
/sources/certi/applications/XPlaneHLAPlugin/XPlane_Trace/CMakeLists.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- XPlane_Trace/CMakeLists.txt 6 Nov 2008 08:02:01 -0000 1.2
+++ XPlane_Trace/CMakeLists.txt 25 Jun 2009 18:32:57 -0000 1.3
@@ -10,5 +10,5 @@
# Generic CMake executable target
###################################
ADD_EXECUTABLE(${EXE_NAME} ${SRC_LIST})
-TARGET_LINK_LIBRARIES (${EXE_NAME} ${CERTI_LIBRARIES})
+TARGET_LINK_LIBRARIES (${EXE_NAME} ${RTI_LIBRARIES})
INSTALL(TARGETS ${EXE_NAME} RUNTIME DESTINATION bin)
\ No newline at end of file
Index: XPlane_Trace/XP_RTData.cpp
===================================================================
RCS file:
/sources/certi/applications/XPlaneHLAPlugin/XPlane_Trace/XP_RTData.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- XPlane_Trace/XP_RTData.cpp 6 Nov 2008 08:02:01 -0000 1.4
+++ XPlane_Trace/XP_RTData.cpp 25 Jun 2009 18:32:57 -0000 1.5
@@ -24,7 +24,7 @@
const RTI::AttributeHandleValuePairSet& theAttributes,
//Attributs list
const char
*theTag) //Tag
Name Federate
throw ( RTI::ObjectNotKnown,
RTI::AttributeNotKnown,
-
RTI::FederateOwnsAttributes,
RTI::InvalidFederationTime,
+
RTI::FederateOwnsAttributes,
RTI::FederateInternalError)
{
RTI::ULong nbVPS= theAttributes.size();
Index: XPlane_Trace/XP_Trace.h
===================================================================
RCS file: /sources/certi/applications/XPlaneHLAPlugin/XPlane_Trace/XP_Trace.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- XPlane_Trace/XP_Trace.h 6 Nov 2008 08:02:01 -0000 1.3
+++ XPlane_Trace/XP_Trace.h 25 Jun 2009 18:32:57 -0000 1.4
@@ -48,7 +48,7 @@
const RTI::AttributeHandleValuePairSet& theAttributes,
const char
*theTag)
throw ( RTI::ObjectNotKnown,
RTI::AttributeNotKnown,
-
RTI::FederateOwnsAttributes,
RTI::InvalidFederationTime,
+
RTI::FederateOwnsAttributes,
RTI::FederateInternalError);
private:
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [certi-cvs] applications/XPlaneHLAPlugin CMakeLists.txt Fin...,
certi-cvs <=