blob: 80dfc687a58fd38f6a0f064685f1090c0b902875 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION 3.5)
file(MAKE_DIRECTORY
"/home/logan/school/C++/smart_pointers/build/_deps/fmt-src"
"/home/logan/school/C++/smart_pointers/build/_deps/fmt-build"
"/home/logan/school/C++/smart_pointers/build/_deps/fmt-subbuild/fmt-populate-prefix"
"/home/logan/school/C++/smart_pointers/build/_deps/fmt-subbuild/fmt-populate-prefix/tmp"
"/home/logan/school/C++/smart_pointers/build/_deps/fmt-subbuild/fmt-populate-prefix/src/fmt-populate-stamp"
"/home/logan/school/C++/smart_pointers/build/_deps/fmt-subbuild/fmt-populate-prefix/src"
"/home/logan/school/C++/smart_pointers/build/_deps/fmt-subbuild/fmt-populate-prefix/src/fmt-populate-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "/home/logan/school/C++/smart_pointers/build/_deps/fmt-subbuild/fmt-populate-prefix/src/fmt-populate-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "/home/logan/school/C++/smart_pointers/build/_deps/fmt-subbuild/fmt-populate-prefix/src/fmt-populate-stamp${cfgdir}") # cfgdir has leading slash
endif()
|