mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-19 07:39:42 +00:00
14 lines
252 B
CMake
14 lines
252 B
CMake
add_executable(mygui_test
|
|
main.cpp
|
|
${BSA} ${BSA_HEADER}
|
|
${MWGUI} ${MWGUI_HEADER}
|
|
${OENGINE_OGRE}
|
|
${OENGINE_GUI}
|
|
${MANGLE_INPUT}
|
|
)
|
|
target_link_libraries(mygui_test
|
|
${OGRE_LIBRARIES}
|
|
${OIS_LIBRARIES}
|
|
MyGUIEngine
|
|
MyGUI.OgrePlatform
|
|
)
|