Skip to content

Commit f978b09

Browse files
ekilmerxlauko
authored andcommitted
Various fixes
1 parent 5ab4fe9 commit f978b09

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

ports/gap/portfile.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ vcpkg_from_github(
66
HEAD_REF main
77
)
88

9-
vcpkg_configure_cmake(
9+
vcpkg_cmake_configure(
1010
SOURCE_PATH "${SOURCE_PATH}"
11-
PREFER_NINJA
1211
OPTIONS
1312
-DGAP_ENABLE_COROUTINES=OFF
1413
-DENABLE_TESTING=OFF
1514
-DGAP_INSTALL=ON
15+
-DUSE_SYSTEM_DEPENDENCIES=ON
1616
)
1717

18-
vcpkg_install_cmake()
18+
vcpkg_cmake_install()
1919
vcpkg_cmake_config_fixup(
2020
PACKAGE_NAME "gap"
2121
CONFIG_PATH lib/cmake/gap

ports/gap/vcpkg.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"name": "gap",
33
"version": "0.0.0",
4-
"port-version": 1,
54
"description": "A utility library to bridge llvm and mlir gaps",
65
"homepage": "https://github.com/lifting-bits/gap",
7-
"license": "MIT",
6+
"license": "Apache-2.0",
87
"dependencies": [
8+
{
9+
"name": "vcpkg-cmake",
10+
"host": true
11+
},
912
{
1013
"name": "vcpkg-cmake-config",
1114
"host": true

ports/remill/portfile.cmake

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ vcpkg_from_github(
66
HEAD_REF vcpkg-manifest
77
)
88

9-
vcpkg_configure_cmake(
9+
vcpkg_cmake_configure(
1010
SOURCE_PATH "${SOURCE_PATH}"
11-
PREFER_NINJA
11+
OPTIONS
12+
-DUSE_SYSTEM_DEPENDENCIES=ON
1213
)
1314

14-
vcpkg_install_cmake()
15+
vcpkg_cmake_install()
1516
vcpkg_cmake_config_fixup(
1617
PACKAGE_NAME "remill"
1718
CONFIG_PATH lib/cmake/remill

ports/remill/vcpkg.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"name": "remill",
33
"version": "5.0.2",
4-
"port-version": 1,
54
"description": "A static binary translator.",
65
"homepage": "https://github.com/lifting-bits/remill",
76
"license": "Apache-2.0",
87
"dependencies": [
8+
{
9+
"name": "vcpkg-cmake",
10+
"host": true
11+
},
912
{
1013
"name": "vcpkg-cmake-config",
1114
"host": true

0 commit comments

Comments
 (0)