You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 183B

12345678
  1. cmake_minimum_required(VERSION 2.8)
  2. project(digicode_host)
  3. find_package(GTest)
  4. add_subdirectory(src)
  5. if (GTEST_FOUND)
  6. enable_testing()
  7. add_subdirectory(tests)
  8. endif (GTEST_FOUND)