-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
bf0f1dd
commit e3234f1
Showing
5 changed files
with
74 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# macrotest-cmake | ||
This is not signed for mac on the build server. Because of this, you will have to run this before you are able to execute it, if it was built on the build server: | ||
|
||
```bash | ||
sudo xattr -rd com.apple.quarantine macrotest-cmake | ||
``` |
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 @@ | ||
# macrotest-cmake | ||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO mike-malburg/macrotest-cmake | ||
REF main | ||
SHA512 40baa81ab881794b4f94c894c985fb03c3a6478043b9ded4de840ce0f9121ae45e6f9bd18b533e205d86f4ff8d4ddaf1d0e5e27c6cb4aaea5e4cf69c9829173e | ||
HEAD_REF main | ||
) | ||
|
||
set(VCPKG_POLICY_EMPTY_INCLUDE_FOLDER enabled) | ||
|
||
vcpkg_configure_cmake(SOURCE_PATH "${SOURCE_PATH}") | ||
vcpkg_install_cmake() | ||
vcpkg_copy_pdbs() | ||
vcpkg_fixup_pkgconfig() | ||
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING") | ||
|
||
# Move main exe to tools dir | ||
vcpkg_copy_tools( | ||
TOOL_NAMES macrotest-cmake | ||
SEARCH_DIR ${CURRENT_PACKAGES_DIR}/bin | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/tools | ||
AUTO_CLEAN | ||
) |
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,16 @@ | ||
{ | ||
"name": "macrotest-cmake", | ||
"version": "1.0.0", | ||
"port-version": 1, | ||
"description": "A test program, built with cmake, which prints off OS version macro data for debugging purposes.", | ||
"dependencies": [ | ||
{ | ||
"name": "vcpkg-cmake", | ||
"host": true | ||
}, | ||
{ | ||
"name": "vcpkg-cmake-config", | ||
"host": true | ||
} | ||
] | ||
} |
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