mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
12 lines
197 B
CMake
12 lines
197 B
CMake
add_executable(mygui_test
|
|
main.cpp
|
|
${BSA} ${BSA_HEADER}
|
|
${OGRE} ${OGRE_HEADER}
|
|
)
|
|
target_link_libraries(mygui_test
|
|
${OGRE_LIBRARIES}
|
|
${OIS_LIBRARIES}
|
|
MyGUIEngine
|
|
MyGUI.OgrePlatform
|
|
)
|