-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mfl] Fix supports for building on normal triplets (#26951)
* fbthrift * mfl * version * Disable tests * version * revert fbthrift
- Loading branch information
1 parent
4d85e16
commit 3d8c3f5
Showing
5 changed files
with
44 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index c411d11..9336e1d 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -18,17 +18,6 @@ include(cmake/StaticAnalyzers.cmake) | ||
|
||
|
||
add_subdirectory(src) | ||
-add_subdirectory(tests/fonts_for_tests) | ||
-add_subdirectory(tests/unit_tests) | ||
- | ||
-# Building approval tests causes ICE on msvc | ||
-if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang") | ||
- add_subdirectory(tests/approval_tests) | ||
-endif() | ||
- | ||
-if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") | ||
- add_subdirectory(tests/fuzz_tests) | ||
-endif() | ||
|
||
include(GNUInstallDirs) | ||
|
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 |
---|---|---|
@@ -1,16 +1,24 @@ | ||
{ | ||
"name": "mfl", | ||
"version": "0.0.1", | ||
"port-version": 1, | ||
"description": "Computes the layout information for mathematical formulas provided in TeX-like syntax.", | ||
"homepage": "https://github.com/cpp-niel/mfl", | ||
"license": "MIT", | ||
"supports": "static", | ||
"dependencies": [ | ||
"cairo", | ||
"doctest", | ||
"fmt", | ||
"freetype", | ||
"harfbuzz", | ||
"range-v3" | ||
"range-v3", | ||
{ | ||
"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
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