Re-enable MacOS CI
This commit is contained in:
parent
a856030078
commit
aeba7a390e
2 changed files with 14 additions and 14 deletions
24
.github/workflows/ci.yml
vendored
24
.github/workflows/ci.yml
vendored
|
@ -38,18 +38,18 @@ jobs:
|
|||
buildtype: release,
|
||||
args: ''
|
||||
}
|
||||
#- {
|
||||
# name: macOS Debug,
|
||||
# os: macos-latest,
|
||||
# buildtype: debugoptimized,
|
||||
# args: -Ddefault_library=static
|
||||
#}
|
||||
#- {
|
||||
# name: macOS Release,
|
||||
# os: macos-latest,
|
||||
# buildtype: release,
|
||||
# args: -Ddefault_library=static
|
||||
#}
|
||||
- {
|
||||
name: macOS Debug,
|
||||
os: macos-latest,
|
||||
buildtype: debugoptimized,
|
||||
args: -Ddefault_library=static
|
||||
}
|
||||
- {
|
||||
name: macOS Release,
|
||||
os: macos-latest,
|
||||
buildtype: release,
|
||||
args: -Ddefault_library=static
|
||||
}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
|
@ -230,7 +230,7 @@ if host_machine.system() == 'windows' and not get_option('directsound').disabled
|
|||
endif
|
||||
|
||||
if host_machine.system() == 'darwin'
|
||||
frameworks_dep = dependency('appleframeworks', modules : ['CoreText', 'CoreFoundation', 'AppKit', 'Carbon'])
|
||||
frameworks_dep = dependency('appleframeworks', modules : ['CoreText', 'CoreFoundation', 'AppKit', 'Carbon', 'IOKit'])
|
||||
deps += frameworks_dep
|
||||
endif
|
||||
|
||||
|
@ -326,7 +326,7 @@ aegisub_c_pch = ['src/include/agi_pre_c.h']
|
|||
|
||||
aegisub = executable('aegisub', aegisub_src, version_h, acconf,
|
||||
link_with: [libresrc, libluabins, libaegisub],
|
||||
include_directories: [libaegisub_inc, libresrc_inc, version_inc, deps_inc],
|
||||
include_directories: [libaegisub_inc, libresrc_inc, version_inc, deps_inc, include_directories('src')],
|
||||
cpp_pch: aegisub_cpp_pch,
|
||||
c_pch: aegisub_c_pch,
|
||||
install: true,
|
||||
|
|
Loading…
Reference in a new issue