Update gitattributes
[opengl.git] / CMakeLists.txt
diff --git a/CMakeLists.txt b/CMakeLists.txt
deleted file mode 100644 (file)
index d228fa0..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-cmake_minimum_required(VERSION 2.6)
-project(assignment-1)
-set(CMAKE_BINARY_DIR "bin")
-set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR})
-add_executable(assignment-1 assignment1.cpp)
-
-find_package(OpenGL REQUIRED)
-include_directories(${OPENGL_INCLUDE_DIRS})
-target_link_libraries(assignment-1 ${OPENGL_LIBRARIES})
-
-find_package(GLUT REQUIRED)
-if(NOT GLUT_FOUND)
-       message(ERROR "GLUT not found")
-endif(NOT GLUT_FOUND)
-include_directories(${GLUT_INCLUDE_DIR})
-target_link_libraries(assignment-1 ${GLUT_LIBRARIES})
-
-find_package(GLEW REQUIRED)
-if(NOT GLEW_FOUND)
-       message(ERROR "GLEW not found")
-endif(NOT GLEW_FOUND)
-include_directories(${GLEW_INCLUDE_DIR})
-target_link_libraries(assignment-1 ${GLEW_LIBRARIES})
-
-find_package(GLM REQUIRED)
-if(NOT GLM_FOUND)
-       message(ERROR "GLM not found")
-endif(NOT GLM_FOUND)
-include_directories(${GLM_INCLUDE_DIR})