-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add BUILD_UTILITY_LIBRARIES option * Add whereami dependence * Add exe relative utilities * Update samples to use exe relative utilities * Improve diagnostic on missing file * Add missing default argument for error param * Add docs on file utilities * Add EOL * Fix typo Co-authored-by: Ronan Keryell <ronan.keryell@amd.com> * Simplify byte size calculation Co-authored-by: Ronan Keryell <ronan.keryell@amd.com> * Fix typo Co-authored-by: Ben Ashbaugh <ben.ashbaugh@intel.com> * Fix formatting * Remove implicit narrowing conversions * No unnamed type on libSDK surface * warning: enumeration value x not handled in switch --------- Co-authored-by: Ronan Keryell <ronan.keryell@amd.com> Co-authored-by: Ben Ashbaugh <ben.ashbaugh@intel.com>
- Loading branch information
1 parent
cd612e5
commit de7cb8a
Showing
22 changed files
with
324 additions
and
98 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cmake_minimum_required(VERSION 3.11) | ||
include(FetchContent) | ||
FetchContent_Declare( | ||
whereami-external | ||
GIT_REPOSITORY https://github.com/gpakosz/whereami.git | ||
GIT_TAG ba364cd54fd431c76c045393b6522b4bff547f50 # master @ 2023.04.20. | ||
) | ||
FetchContent_MakeAvailable(whereami-external) | ||
add_library(whereami IMPORTED INTERFACE) | ||
target_include_directories(whereami | ||
INTERFACE "${CMAKE_CURRENT_BINARY_DIR}/_deps/whereami-external-src/src" | ||
) | ||
target_sources(whereami | ||
INTERFACE "${CMAKE_CURRENT_BINARY_DIR}/_deps/whereami-external-src/src/whereami.c" | ||
) |
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
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
Oops, something went wrong.