diff options
| author | Fabien Péan <fabien@pean.pro> | 2021-08-31 03:21:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-30 18:21:30 -0700 |
| commit | ce45dd94d53cd489140cd79b5d51d58604656391 (patch) | |
| tree | 3e8d504c156476ee279b5f3586d40d6cd3068226 /ports/eastl | |
| parent | 81274424886a412047e8302dc25d0541733088eb (diff) | |
| download | vcpkg-ce45dd94d53cd489140cd79b5d51d58604656391.tar.gz vcpkg-ce45dd94d53cd489140cd79b5d51d58604656391.zip | |
[eastl] fix dependency eabase (#19643)
Diffstat (limited to 'ports/eastl')
| -rw-r--r-- | ports/eastl/CONTROL | 5 | ||||
| -rw-r--r-- | ports/eastl/EASTLConfig.cmake.in | 3 | ||||
| -rw-r--r-- | ports/eastl/vcpkg.json | 10 |
3 files changed, 13 insertions, 5 deletions
diff --git a/ports/eastl/CONTROL b/ports/eastl/CONTROL deleted file mode 100644 index da3a4b734..000000000 --- a/ports/eastl/CONTROL +++ /dev/null @@ -1,5 +0,0 @@ -Source: eastl
-Version: 3.17.03 -Homepage: https://github.com/electronicarts/EASTL
-Description: Electronic Arts Standard Template Library. It is a C++ template library of containers, algorithms, and iterators useful for runtime and tool development across multiple platforms. It is a fairly extensive and robust implementation of such a library and has an emphasis on high performance above all other considerations.
-Build-Depends: eabase
diff --git a/ports/eastl/EASTLConfig.cmake.in b/ports/eastl/EASTLConfig.cmake.in index 6e1a8ea90..92fb2b18d 100644 --- a/ports/eastl/EASTLConfig.cmake.in +++ b/ports/eastl/EASTLConfig.cmake.in @@ -1,5 +1,8 @@ @PACKAGE_INIT@ +include(CMakeFindDependencyMacro) +find_dependency(EABase CONFIG REQUIRED) + # Provide path for scripts list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}") diff --git a/ports/eastl/vcpkg.json b/ports/eastl/vcpkg.json new file mode 100644 index 000000000..9fd13a0c8 --- /dev/null +++ b/ports/eastl/vcpkg.json @@ -0,0 +1,10 @@ +{ + "name": "eastl", + "version-string": "3.17.03", + "port-version": 1, + "description": "Electronic Arts Standard Template Library. It is a C++ template library of containers, algorithms, and iterators useful for runtime and tool development across multiple platforms. It is a fairly extensive and robust implementation of such a library and has an emphasis on high performance above all other considerations.", + "homepage": "https://github.com/electronicarts/EASTL", + "dependencies": [ + "eabase" + ] +} |
