CMakeLists.txt 302 B

12345678910
  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(test2 C)
  5. add_library(lib2 lib2.c)
  6. add_executable(exe2 exe2.c)
  7. target_link_libraries(exe2 lib1 lib2)