Advertisement
Guest User

Untitled

a guest
Sep 24th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. cmake_minimum_required(VERSION 2.6)
  2.  
  3. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
  4.  
  5. project(raytracer C CXX)
  6.  
  7. set(SOURCE_FILES
  8. src/main.cpp
  9. src/Image.hpp
  10. src/Image.cpp
  11. src/Kernel.hpp
  12. src/Kernel.cpp
  13. src/Point3.hpp
  14. src/Point3.cpp
  15. src/Vector3.hpp
  16. src/Vector3.cpp
  17. src/Ray.hpp
  18. src/Ray.cpp
  19. src/Material.hpp
  20. src/Material.cpp
  21. src/Surface.hpp
  22. src/Surface.cpp
  23. src/Sphere.hpp
  24. src/Sphere.cpp
  25. src/RGB.hpp
  26. )
  27.  
  28. add_executable(raytracer ${SOURCE_FILES})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement