mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
745 B
25 lines
745 B
|
14 years ago
|
set(MagnumDebugTools_SRCS
|
||
|
|
Profiler.cpp
|
||
|
|
ResourceManager.cpp
|
||
|
|
ShapeRenderer.cpp
|
||
|
|
|
||
|
|
Implementation/AbstractBoxRenderer.cpp
|
||
|
|
Implementation/AbstractShapeRenderer.cpp
|
||
|
|
Implementation/AxisAlignedBoxRenderer.cpp
|
||
|
|
Implementation/BoxRenderer.cpp)
|
||
|
|
|
||
|
|
set(MagnumDebugTools_HEADERS
|
||
|
|
DebugTools.h
|
||
|
|
Profiler.h
|
||
|
|
ResourceManager.h
|
||
|
|
ShapeRenderer.h
|
||
|
|
|
||
|
|
magnumDebugToolsVisibility.h)
|
||
|
|
|
||
|
|
add_library(MagnumDebugTools SHARED ${MagnumDebugTools_SRCS})
|
||
|
|
|
||
|
|
target_link_libraries(MagnumDebugTools Magnum MagnumPhysics MagnumPrimitives MagnumSceneGraph MagnumShaders)
|
||
|
|
|
||
|
|
install(TARGETS MagnumDebugTools DESTINATION ${MAGNUM_LIBRARY_INSTALL_DIR})
|
||
|
|
install(FILES ${MagnumDebugTools_HEADERS} DESTINATION ${MAGNUM_INCLUDE_INSTALL_DIR}/DebugTools)
|