mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
PR: 206495 Submitted by: Thibault Payet <monwarez@mailoo.org> The PagedGeometry engine is an add-on to Ogre which provides highly optimized methods for rendering massive amounts of small meshes, covering a possibly infinite area. This is especially well suited for dense forests and outdoor scenes, with millions of trees, bushes, grass, rocks, etc. http://www.ogre3d.org/tikiwiki/PagedGeometry+Engine
40 lines
1.7 KiB
Text
40 lines
1.7 KiB
Text
--- CMakeDependenciesConfig.txt.orig 2016-01-10 10:54:34 UTC
|
|
+++ CMakeDependenciesConfig.txt
|
|
@@ -2,11 +2,13 @@ IF(WIN32)
|
|
set(Ogre_INCLUDE_DIRS "include/Ogre" CACHE PATH "The ogre include path to use")
|
|
set(Ogre_LIBRARY_DIRS "lib" CACHE PATH "The ogre lib path to use")
|
|
set(Ogre_LIBRARIES "OgreMain" CACHE STRING "The ogre lib to link against")
|
|
+ if(PAGEDGEOMETRY_BUILD_SAMPLES)
|
|
set(Ois_INCLUDE_DIRS "include/ois" CACHE PATH "The OIS include path to use")
|
|
set(Ois_LIBRARY_DIRS "lib" CACHE PATH "The OIS lib path to use")
|
|
set(Ois_LIBRARIES "ois" CACHE STRING "The ogre lib to link against")
|
|
# add includes to check directories
|
|
set(CMAKE_REQUIRED_INCLUDES ${Ogre_INCLUDE_DIRS} ${Ois_INCLUDE_DIRS})
|
|
+ endif(PAGEDGEOMETRY_BUILD_SAMPLES)
|
|
|
|
# check for libs and include files we want to use
|
|
CHECK_INCLUDE_FILE(windows.h HAVE_WINDOWS_INCLUDES)
|
|
@@ -22,7 +24,9 @@ ELSEIF(UNIX)
|
|
PKG_CHECK_MODULES (Ogre OGRE REQUIRED)
|
|
PKG_CHECK_MODULES (Ogre-Terrain OGRE-Terrain REQUIRED)
|
|
PKG_CHECK_MODULES (Ogre-Paging OGRE-Paging REQUIRED)
|
|
+ if(PAGEDGEOMETRY_BUILD_SAMPLES)
|
|
PKG_CHECK_MODULES (Ois OIS REQUIRED)
|
|
+ endif(PAGEDGEOMETRY_BUILD_SAMPLES)
|
|
# add includes to check directories
|
|
set(CMAKE_REQUIRED_INCLUDES ${Ogre_INCLUDE_DIRS} ${Ois_INCLUDE_DIRS})
|
|
# check for libs and include files we want to use
|
|
@@ -46,6 +50,7 @@ IF(NOT WIN32)
|
|
message("could not find the Ogre includes. Please install them.")
|
|
endif()
|
|
|
|
+ if(PAGEDGEOMETRY_BUILD_SAMPLES)
|
|
CHECK_INCLUDE_FILE_CXX(OIS/OIS.h HAVE_OIS_DIR_INCLUDES)
|
|
if(HAVE_OIS_DIR_INCLUDES)
|
|
set(OIS_INCLUDE "OIS/OIS.h")
|
|
@@ -65,4 +70,5 @@ IF(NOT WIN32)
|
|
else()
|
|
set(OIS_USING_DIR FALSE)
|
|
endif()
|
|
+ endif(PAGEDGEOMETRY_BUILD_SAMPLES)
|
|
endif()
|