17 lines
317 B
Plaintext
17 lines
317 B
Plaintext
|
|
# Copyright 2022 Google LLC
|
||
|
|
#
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
import("skcms.gni")
|
||
|
|
|
||
|
|
static_library("skcms") {
|
||
|
|
cflags = []
|
||
|
|
if (!is_win || is_clang) {
|
||
|
|
cflags += [ "-std=c11" ]
|
||
|
|
}
|
||
|
|
|
||
|
|
public = skcms_public_headers
|
||
|
|
sources = skcms_sources
|
||
|
|
}
|