mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
40 lines
800 B
CMake
40 lines
800 B
CMake
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
find_package(Qt5Core REQUIRED)
|
|
|
|
add_executable(rwviewer
|
|
main.cpp
|
|
ViewerWindow.cpp
|
|
|
|
models/ObjectListModel.cpp
|
|
models/DFFFramesTreeModel.cpp
|
|
|
|
views/ViewerInterface.hpp
|
|
views/ObjectViewer.cpp
|
|
views/ModelViewer.cpp
|
|
views/WorldViewer.cpp
|
|
|
|
ViewerWidget.cpp
|
|
ItemListModel.cpp
|
|
ItemListWidget.cpp
|
|
IMGArchiveModel.cpp
|
|
widgets/ModelFramesWidget.cpp
|
|
AnimationListModel.cpp
|
|
AnimationListWidget.cpp
|
|
)
|
|
|
|
target_include_directories(rwviewer
|
|
SYSTEM
|
|
PRIVATE
|
|
${BULLET_INCLUDE_DIR}
|
|
)
|
|
|
|
target_link_libraries(rwviewer
|
|
rwengine
|
|
${OPENGL_LIBRARIES}
|
|
${BULLET_LIBRARIES})
|
|
qt5_use_modules(rwviewer Widgets OpenGL)
|
|
|
|
install(TARGETS rwviewer RUNTIME DESTINATION "${BIN_DIR}")
|