2008-09-08 17:08:27 +00:00
|
|
|
find_package(Qt4 REQUIRED)
|
|
|
|
|
find_package(OpenGL REQUIRED)
|
2008-09-07 23:15:11 +00:00
|
|
|
|
|
|
|
|
set(QT_USE_QTOPENGL TRUE)
|
|
|
|
|
include(${QT_USE_FILE})
|
|
|
|
|
|
2008-09-08 17:08:27 +00:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
2008-09-07 23:15:11 +00:00
|
|
|
|
2008-09-08 17:08:27 +00:00
|
|
|
include_directories( ${QT_INCLUDE_DIR} )
|
2008-09-07 23:15:11 +00:00
|
|
|
|
2008-09-09 18:50:45 +00:00
|
|
|
set(quaternion_demo_SRCS gpuhelper.cpp icosphere.cpp camera.cpp trackball.cpp quaternion_demo.cpp)
|
2008-09-07 23:15:11 +00:00
|
|
|
|
2008-09-08 17:08:27 +00:00
|
|
|
qt4_automoc(${quaternion_demo_SRCS})
|
2008-09-07 23:15:11 +00:00
|
|
|
|
2008-09-08 17:08:27 +00:00
|
|
|
add_executable(quaternion_demo ${quaternion_demo_SRCS})
|
2009-09-27 17:48:53 -04:00
|
|
|
add_dependencies(demos quaternion_demo)
|
2008-09-07 23:15:11 +00:00
|
|
|
|
2008-09-08 17:08:27 +00:00
|
|
|
target_link_libraries(quaternion_demo
|
|
|
|
|
${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY}
|
|
|
|
|
${QT_QTOPENGL_LIBRARY} ${OPENGL_LIBRARIES} )
|