Advertisement
chzchz

Untitled

Apr 5th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.13)
  2. project(graduation)
  3.  
  4. set(CMAKE_CXX_STANDARD 17)
  5.  
  6. add_executable(
  7. graduation
  8.  
  9. test_runner.h
  10.  
  11. database.h
  12. database.cpp
  13.  
  14. date.h
  15. date.cpp
  16. # playground.h
  17. # playground.cpp
  18.  
  19. token.h
  20. token.cpp
  21.  
  22. condition_parser.h
  23. condition_parser.cpp
  24. condition_parser_test.cpp
  25.  
  26. node.h
  27. node.cpp
  28.  
  29. # main.cpp
  30. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement