forked from esy-packages/esy-harfbuzz
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Try using cmake strategy * Add cmake dependency * Add CXX compiler * Switch Linux / OSX to use cmake, too * Add dependency * Add wait for travis * Link math library * Add cocoa framework * Add switch for osx / linux * Revert "Switch Linux / OSX to use cmake, too" This reverts commit 09a99e7.
- Loading branch information
Showing
4 changed files
with
21 additions
and
3 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ install: | |
- npm install --global [email protected] | ||
- esy install | ||
script: | ||
- esy build | ||
- travis_wait 40 esy build | ||
cache: | ||
timeout: 360 | ||
directories: | ||
|
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,2 +1,7 @@ | ||
cd _build | ||
./configure --prefix=$cur__install --host=x86_64-w64-mingw32 | ||
|
||
INSTALL_PATH="$(cygpath -u $cur__install)" | ||
|
||
echo "Install: $INSTALL_PATH" | ||
|
||
cmake -G "Unix Makefiles" ../harfbuzz-1.9.0 -DCMAKE_C_COMPILER=x86_64-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ -DCMAKE_LINKER=/usr/bin/x86_64-w64-mingw32-ld -DCMAKE_AR=/usr/bin/x86_64-w64-mingw32-ar -DCMAKE_INSTALL_PREFIX=$INSTALL_PATH |
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