WIP Windows build

This commit is contained in:
athile 2010-08-30 10:34:13 +01:00
parent 72fbeb9b9a
commit 9e2129c4b3
4 changed files with 12 additions and 4 deletions

View file

@ -201,7 +201,7 @@ target_link_libraries(openmw
${SOUND_INPUT_LIBRARY}
caelum
MyGUIEngine
MyGUI.OgrePlatform
MyGUIOgrePlatform
)
if (APPLE)

View file

@ -4,6 +4,6 @@ include_directories(
${OGRE_INCLUDE_DIR}
)
include(MyGUI.OgrePlatform.list)
add_library(MyGUI.OgrePlatform ${HEADER_FILES} ${SOURCE_FILES})
target_link_libraries(MyGUI.OgrePlatform ${OGRE_LIBRARIES})
add_library(MyGUIOgrePlatform ${HEADER_FILES} ${SOURCE_FILES})
target_link_libraries(MyGUIOgrePlatform ${OGRE_LIBRARIES})
link_directories(${OGRE_LIB_DIR})

@ -1 +1 @@
Subproject commit 6ff6d7556c760bfb784249b63c5610e53f891a9e
Subproject commit 4a31f4e0f874b6e0715b7c195a44f5a3975fdb7e

View file

@ -2,6 +2,12 @@
#ifndef _STDINT_WRAPPER_H
#define _STDINT_WRAPPER_H
#if (_MSC_VER >= 1600)
#include <cstdint>
#else
#include <boost/cstdint.hpp>
// Pull the boost names into the global namespace for convenience
@ -11,3 +17,5 @@ using boost::int64_t;
using boost::uint64_t;
#endif
#endif