mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
de273b2e11
``` git grep -lz 'Copyright.txt or https://cmake.org/licensing ' | while IFS= read -r -d $'\0' f ; do sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / { s/Copyright.txt/LICENSE.rst/ }' "$f" ; done ```
10 lines
260 B
CMake
10 lines
260 B
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file LICENSE.rst or https://cmake.org/licensing for details.
|
|
|
|
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
|
|
|
|
project(test C)
|
|
|
|
add_subdirectory(sub_exe)
|
|
add_subdirectory(sub_lib)
|