Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.5.1)
  2. project(kolokwium)
  3.  
  4.  
  5. include_directories(include)
  6.  
  7. set(KOLOKWIUM_INCS
  8.  
  9. include/CyberOwadziTurniej.h
  10. include/Pole_mapy.h
  11. include/PoleRankingowe.h
  12. include/PoleSelekcyjne.h
  13. include/Zawodnik.h
  14. include/Zawodnik_losowo_zmienny.h
  15. )
  16. set(KOLOKWIUM_SRCS
  17. src/CyberOwadziTurniej.cpp
  18. src/main.cpp
  19. src/Pole_mapy.cpp
  20. src/PoleRankingowe.cpp
  21. src/PoleSelekcyjne.cpp
  22. src/Zawodnik.cpp
  23. src/Zawodnik_losowo_zmienny.cpp
  24.  
  25.  
  26. )
  27.  
  28.  
  29. add_executable(kolokwium
  30.  
  31. ${KOLOKWIUM_INCS}
  32. ${KOLOKWIUM_SRCS}
  33. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement