mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
10 lines
285 B
CMake
10 lines
285 B
CMake
|
include_directories(
|
||
|
include
|
||
|
${MYGUI_SOURCE_DIR}/MyGUIEngine/include
|
||
|
${OGRE_INCLUDE_DIR}
|
||
|
)
|
||
|
include(MyGUI.OgrePlatform.list)
|
||
|
add_library(MyGUI.OgrePlatform ${HEADER_FILES} ${SOURCE_FILES})
|
||
|
target_link_libraries(MyGUI.OgrePlatform ${OGRE_LIBRARIES})
|
||
|
link_directories(${OGRE_LIB_DIR})
|