forked from mirror/openmw-tes3mp
Merge branch 'master' of https://github.com/zinnschlag/openmw
This commit is contained in:
commit
c9f1bd8735
3 changed files with 27 additions and 2 deletions
|
@ -161,6 +161,19 @@ if (NOT FFMPEG_FOUND)
|
||||||
message(WARNING "--------------------")
|
message(WARNING "--------------------")
|
||||||
endif (NOT FFMPEG_FOUND)
|
endif (NOT FFMPEG_FOUND)
|
||||||
|
|
||||||
|
# TinyXML
|
||||||
|
option(USE_SYSTEM_TINYXML "Use system TinyXML library instead of internal." OFF)
|
||||||
|
if(USE_SYSTEM_TINYXML)
|
||||||
|
find_library(TINYXML_LIBRARIES tinyxml)
|
||||||
|
find_path(TINYXML_INCLUDE_DIR tinyxml.h)
|
||||||
|
message(STATUS "Found TinyXML: ${TINYXML_LIBRARIES} ${TINYXML_INCLUDE_DIR}")
|
||||||
|
if(TINYXML_LIBRARIES AND TINYXML_INCLUDE_DIR)
|
||||||
|
include_directories(${TINYXML_INCLUDE_DIR})
|
||||||
|
message(STATUS "Using system TinyXML library.")
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Detection of system TinyXML incomplete.")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
# Platform specific
|
# Platform specific
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
#include "adjusterwidget.hpp"
|
#include "adjusterwidget.hpp"
|
||||||
|
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
|
|
||||||
|
|
13
extern/oics/CMakeLists.txt
vendored
13
extern/oics/CMakeLists.txt
vendored
|
@ -9,12 +9,23 @@ set(OICS_SOURCE_FILES
|
||||||
ICSInputControlSystem_keyboard.cpp
|
ICSInputControlSystem_keyboard.cpp
|
||||||
ICSInputControlSystem_mouse.cpp
|
ICSInputControlSystem_mouse.cpp
|
||||||
ICSInputControlSystem_joystick.cpp
|
ICSInputControlSystem_joystick.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
set(TINYXML_SOURCE_FILES
|
||||||
tinyxml.cpp
|
tinyxml.cpp
|
||||||
tinyxmlparser.cpp
|
tinyxmlparser.cpp
|
||||||
tinyxmlerror.cpp
|
tinyxmlerror.cpp
|
||||||
tinystr.cpp
|
tinystr.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
add_library(${OICS_LIBRARY} STATIC ${OICS_SOURCE_FILES})
|
if(USE_SYSTEM_TINYXML)
|
||||||
|
add_library(${OICS_LIBRARY} STATIC ${OICS_SOURCE_FILES})
|
||||||
|
target_link_libraries(${OICS_LIBRARY} ${TINYXML_LIBRARIES})
|
||||||
|
else()
|
||||||
|
add_library(${OICS_LIBRARY} STATIC
|
||||||
|
${OICS_SOURCE_FILES}
|
||||||
|
${TINYXML_SOURCE_FILES})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Does this do anything?
|
||||||
link_directories(${CMAKE_CURRENT_BINARY_DIR})
|
link_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||||
|
|
Loading…
Reference in a new issue