mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
26 lines
534 B
CMake
26 lines
534 B
CMake
set(OENGINE_GUI
|
|
gui/layout.cpp
|
|
)
|
|
|
|
set(OENGINE_BULLET
|
|
bullet/BtOgre.cpp
|
|
bullet/BtOgreExtras.h
|
|
bullet/BtOgreGP.h
|
|
bullet/BtOgrePG.h
|
|
bullet/physic.cpp
|
|
bullet/physic.hpp
|
|
bullet/BulletShapeLoader.cpp
|
|
bullet/BulletShapeLoader.h
|
|
bullet/trace.cpp
|
|
bullet/trace.h
|
|
)
|
|
|
|
set(OENGINE_ALL ${OENGINE_GUI} ${OENGINE_BULLET})
|
|
|
|
set(OENGINE_LIBRARY "oengine")
|
|
set(OENGINE_LIBRARY ${OENGINE_LIBRARY} PARENT_SCOPE)
|
|
|
|
source_group(oengine FILES ${OENGINE_ALL})
|
|
|
|
add_library(${OENGINE_LIBRARY} STATIC ${OENGINE_ALL})
|