Guest User

Untitled

a guest
Apr 13th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.25 KB | None | 0 0
  1. cmake_minimum_required (VERSION 2.6)
  2. project (GLWindow)
  3.  
  4. include_directories ("/gl")
  5. add_subdirectory (gl)
  6.  
  7. SET_TARGET_PROPERTIES(gl PROPERTIES LINKER_LANGUAGE C)
  8.  
  9. add_executable(GLWindow MainWindow.cpp Main.cpp)
  10. target_link_libraries (GLWindow gl)
Add Comment
Please, Sign In to add comment