mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 07:31:37 +08:00
6d5a1a897e
* [vcpkg_find_acquire_program] Add gn * [GN] Add build system support * [crashpad] Add new port
15 lines
333 B
Plaintext
15 lines
333 B
Plaintext
import("../../build/crashpad_buildconfig.gni")
|
|
|
|
config("zlib_config") {
|
|
defines = [ "CRASHPAD_ZLIB_SOURCE_EXTERNAL" ]
|
|
include_dirs = [ "@_INCLUDE_DIR@" ]
|
|
}
|
|
|
|
source_set("zlib") {
|
|
public_configs = [ ":zlib_config" ]
|
|
if(is_debug) {
|
|
libs = [ "@_LIBRARY_DEB@" ]
|
|
} else {
|
|
libs = [ "@_LIBRARY_REL@" ]
|
|
}
|
|
} |