Skip to content
Snippets Groups Projects
CMakeLists.txt 231 B
Newer Older
  • Learn to ignore specific revisions
  • Jan Matoušek's avatar
    Jan Matoušek committed
    cmake_minimum_required(VERSION 3.15)
    
    project(pa2-2019-lab)
    
    Jan Matoušek's avatar
    Jan Matoušek committed
    
    set(CMAKE_CXX_STANDARD 14)
    
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -pedantic")
    
    
    add_subdirectory(lab)
    add_subdirectory(bug-hunt)
    add_subdirectory(homework)