CMakeLists.txt 267 B

1234567891011
  1. ## TODO: find out which version is actually required
  2. cmake_minimum_required(VERSION 3.1)
  3. project(synfigstudio)
  4. # using latest stable standard, but not strictly
  5. # the rest is done via target_compile_features instead
  6. set(CMAKE_CXX_STANDARD 14)
  7. add_subdirectory(src)