[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54892] trunk/blender: add PHY headers to cmake's ketsji (else some IDE's won't show)

Campbell Barton ideasman42 at gmail.com
Wed Feb 27 00:08:43 CET 2013


Revision: 54892
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54892
Author:   campbellbarton
Date:     2013-02-26 23:08:42 +0000 (Tue, 26 Feb 2013)
Log Message:
-----------
add PHY headers to cmake's ketsji (else some IDE's won't show)

Modified Paths:
--------------
    trunk/blender/build_files/cmake/macros.cmake
    trunk/blender/source/blender/editors/space_file/fsmenu.h
    trunk/blender/source/gameengine/Ketsji/CMakeLists.txt
    trunk/blender/source/gameengine/Ketsji/KX_IpoConvert.cpp

Modified: trunk/blender/build_files/cmake/macros.cmake
===================================================================
--- trunk/blender/build_files/cmake/macros.cmake	2013-02-26 23:01:54 UTC (rev 54891)
+++ trunk/blender/build_files/cmake/macros.cmake	2013-02-26 23:08:42 UTC (rev 54892)
@@ -143,7 +143,9 @@
 
 	foreach(_SRC ${sources})
 		get_filename_component(_SRC_EXT ${_SRC} EXT)
-		if((${_SRC_EXT} MATCHES ".h") OR (${_SRC_EXT} MATCHES ".hpp"))
+		if((${_SRC_EXT} MATCHES ".h") OR
+		   (${_SRC_EXT} MATCHES ".hpp") OR
+		   (${_SRC_EXT} MATCHES ".hh"))
 			source_group("Header Files" FILES ${_SRC})
 		else()
 			source_group("Source Files" FILES ${_SRC})

Modified: trunk/blender/source/blender/editors/space_file/fsmenu.h
===================================================================
--- trunk/blender/source/blender/editors/space_file/fsmenu.h	2013-02-26 23:01:54 UTC (rev 54891)
+++ trunk/blender/source/blender/editors/space_file/fsmenu.h	2013-02-26 23:08:42 UTC (rev 54892)
@@ -64,7 +64,7 @@
 
 /** Inserts a new fsmenu entry with the given \a path.
  * Duplicate entries are not added.
- * \param sorted Should entry be inserted in sorted order?
+ * \param flag Options for inserting the entry.
  */
 void    fsmenu_insert_entry(struct FSMenu *fsmenu, FSMenuCategory category, const char *path, const FSMenuInsert flag);
 

Modified: trunk/blender/source/gameengine/Ketsji/CMakeLists.txt
===================================================================
--- trunk/blender/source/gameengine/Ketsji/CMakeLists.txt	2013-02-26 23:01:54 UTC (rev 54891)
+++ trunk/blender/source/gameengine/Ketsji/CMakeLists.txt	2013-02-26 23:08:42 UTC (rev 54892)
@@ -222,6 +222,18 @@
 	KX_VisibilityActuator.h
 	KX_WorldInfo.h
 	KX_WorldIpoController.h
+
+	# orphan headers (not apart of a library)
+	../Physics/common/PHY_DynamicTypes.h
+	../Physics/common/PHY_ICharacter.h
+	../Physics/common/PHY_IController.h
+	../Physics/common/PHY_IGraphicController.h
+	../Physics/common/PHY_IMotionState.h
+	../Physics/common/PHY_IPhysicsController.h
+	../Physics/common/PHY_IPhysicsEnvironment.h
+	../Physics/common/PHY_IVehicle.h
+	../Physics/common/PHY_Pro.h
+
 )
 
 add_definitions(-DGLEW_STATIC)

Modified: trunk/blender/source/gameengine/Ketsji/KX_IpoConvert.cpp
===================================================================
--- trunk/blender/source/gameengine/Ketsji/KX_IpoConvert.cpp	2013-02-26 23:01:54 UTC (rev 54891)
+++ trunk/blender/source/gameengine/Ketsji/KX_IpoConvert.cpp	2013-02-26 23:08:42 UTC (rev 54892)
@@ -25,7 +25,7 @@
  * ***** END GPL LICENSE BLOCK *****
  */
 
-/** \file gameengine/Converter/KX_IpoConvert.cpp
+/** \file gameengine/Ketsji/KX_IpoConvert.cpp
  *  \ingroup bgeconv
  */
 




More information about the Bf-blender-cvs mailing list