Guest User

Untitled

a guest
May 27th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
  2. PROJECT(osg_example)
  3.  
  4. FIND_PACKAGE(OpenSceneGraph REQUIRED COMPONENTS osgViewer)
  5.  
  6. ADD_EXECUTABLE(osg_example osg_example.cpp)
  7.  
  8. TARGET_LINK_LIBRARIES(osg_example
  9. ${OPENSCENEGRAPH_LIBRARIES}
  10. )
Add Comment
Please, Sign In to add comment