Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2023-05-16 09:26:06 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7f10234bd60c4461058bdd4df915134f88e383d0
7f10234b
1 parent
198a2eae
Add compatibility with cmake < 3.24
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
printing/windows/DownloadProject.CMakeLists.cmake.in
printing/windows/DownloadProject.CMakeLists.cmake.in
View file @
7f10234
...
...
@@ -6,7 +6,11 @@ cmake_minimum_required(VERSION 3.10)
project(${DL_ARGS_PROJ}-download NONE)
include(ExternalProject)
cmake_policy(SET CMP0135 NEW)
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.24")
cmake_policy(SET CMP0135 NEW)
endif()
ExternalProject_Add(${DL_ARGS_PROJ}-download
${DL_ARGS_UNPARSED_ARGUMENTS}
SOURCE_DIR "${DL_ARGS_SOURCE_DIR}"
...
...
Please
register
or
login
to post a comment