mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-14 12:06:44 +00:00
cmake: Move USED_OSG_(COMPONENTS|PLUGINS) before add_subdirectory(extern)
This commit is contained in:
parent
8737453498
commit
a06f598442
1 changed files with 20 additions and 19 deletions
|
@ -169,6 +169,26 @@ if (USE_QT)
|
||||||
#set(CMAKE_AUTOMOC ON)
|
#set(CMAKE_AUTOMOC ON)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(USED_OSG_COMPONENTS
|
||||||
|
osgDB
|
||||||
|
osgViewer
|
||||||
|
osgText
|
||||||
|
osgGA
|
||||||
|
osgParticle
|
||||||
|
osgUtil
|
||||||
|
osgFX
|
||||||
|
osgShadow
|
||||||
|
osgAnimation)
|
||||||
|
set(USED_OSG_PLUGINS
|
||||||
|
osgdb_bmp
|
||||||
|
osgdb_dds
|
||||||
|
osgdb_freetype
|
||||||
|
osgdb_jpeg
|
||||||
|
osgdb_osg
|
||||||
|
osgdb_png
|
||||||
|
osgdb_serializers_osg
|
||||||
|
osgdb_tga)
|
||||||
|
|
||||||
add_subdirectory(extern)
|
add_subdirectory(extern)
|
||||||
|
|
||||||
# Sound setup
|
# Sound setup
|
||||||
|
@ -273,25 +293,6 @@ if(NOT HAVE_STDINT_H)
|
||||||
message(FATAL_ERROR "stdint.h was not found" )
|
message(FATAL_ERROR "stdint.h was not found" )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(USED_OSG_COMPONENTS
|
|
||||||
osgDB
|
|
||||||
osgViewer
|
|
||||||
osgText
|
|
||||||
osgGA
|
|
||||||
osgParticle
|
|
||||||
osgUtil
|
|
||||||
osgFX
|
|
||||||
osgShadow
|
|
||||||
osgAnimation)
|
|
||||||
set(USED_OSG_PLUGINS
|
|
||||||
osgdb_bmp
|
|
||||||
osgdb_dds
|
|
||||||
osgdb_freetype
|
|
||||||
osgdb_jpeg
|
|
||||||
osgdb_osg
|
|
||||||
osgdb_png
|
|
||||||
osgdb_serializers_osg
|
|
||||||
osgdb_tga)
|
|
||||||
if(OPENMW_USE_SYSTEM_OSG)
|
if(OPENMW_USE_SYSTEM_OSG)
|
||||||
find_package(OpenSceneGraph 3.3.4 REQUIRED ${USED_OSG_COMPONENTS})
|
find_package(OpenSceneGraph 3.3.4 REQUIRED ${USED_OSG_COMPONENTS})
|
||||||
if(OSG_STATIC)
|
if(OSG_STATIC)
|
||||||
|
|
Loading…
Reference in a new issue