-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zachary Ferguson
authored
Jun 29, 2023
1 parent
07e66e3
commit e5dda8c
Showing
44 changed files
with
417 additions
and
410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# | ||
# Copyright 2021 Adobe. All rights reserved. | ||
# This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. You may obtain a copy | ||
# of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software distributed under | ||
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS | ||
# OF ANY KIND, either express or implied. See the License for the specific language | ||
# governing permissions and limitations under the License. | ||
# | ||
|
||
if(DEFINED ENV{CPM_SOURCE_CACHE}) | ||
set(CPM_SOURCE_CACHE_DEFAULT $ENV{CPM_SOURCE_CACHE}) | ||
else() | ||
# Set CPM cache folder if unset | ||
file(REAL_PATH "~/.cache/CPM" CPM_SOURCE_CACHE_DEFAULT EXPAND_TILDE) | ||
endif() | ||
|
||
set(CPM_SOURCE_CACHE | ||
${CPM_SOURCE_CACHE_DEFAULT} | ||
CACHE PATH "Directory to download CPM dependencies" | ||
) | ||
message(STATUS "Using CPM cache folder: ${CPM_SOURCE_CACHE}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# Copyright 2021 Adobe. All rights reserved. | ||
# This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. You may obtain a copy | ||
# of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software distributed under | ||
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS | ||
# OF ANY KIND, either express or implied. See the License for the specific language | ||
# governing permissions and limitations under the License. | ||
# | ||
function(ipc_toolkit_filter_flags flags) | ||
include(CheckCXXCompilerFlag) | ||
set(output_flags) | ||
foreach(FLAG IN ITEMS ${${flags}}) | ||
string(REPLACE "=" "-" FLAG_VAR "${FLAG}") | ||
if(NOT DEFINED IS_SUPPORTED_${FLAG_VAR}) | ||
check_cxx_compiler_flag("${FLAG}" IS_SUPPORTED_${FLAG_VAR}) | ||
endif() | ||
if(IS_SUPPORTED_${FLAG_VAR}) | ||
list(APPEND output_flags $<$<COMPILE_LANGUAGE:CXX>:${FLAG}>) | ||
endif() | ||
endforeach() | ||
set(${flags} ${output_flags} PARENT_SCOPE) | ||
endfunction() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
cmake/ipc_toolkit/ipc_toolkit_target_link_system_libraries.cmake
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.