CMakeLists.txt 371 B

123456789101112
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
  4. project(test C)
  5. #set_property( GLOBAL PROPERTY GLOBAL_DEPENDS_DEBUG_MODE 1)
  6. add_subdirectory(exec)
  7. add_subdirectory(lib)
  8. add_subdirectory(protolib)
  9. add_dependencies(lib1 proto)