blob: 0daf8ea57abfcb21d57b713e79b1b6883593fe09 [file] [log] [blame]
Brian Silverman3e1563d2015-09-20 16:59:00 -04001licenses(['notice'])
2
3cc_library(
4 name = 'seasocks',
5 visibility = ['//visibility:public'],
6 srcs = glob(['src/main/c/**/*.cpp']),
7 hdrs = glob([
8 'src/main/c/**/*.h',
Brian Silvermanb200c172017-01-02 17:35:35 -08009 ], exclude=[
Brian Silverman3e1563d2015-09-20 16:59:00 -040010 'src/main/internal/**/*',
11 ]),
12 includes = ['src/main/c'],
Brian Silvermanf1cff392015-10-11 19:36:18 -040013 copts = [
14 # TODO(Brian): Don't apply this to all of the code...
15 '-Wno-cast-align',
Austin Schuh23da18b2015-10-11 20:52:49 -070016 '-Wno-cast-qual',
Brian Silvermanf1cff392015-10-11 19:36:18 -040017
18 '-Wno-switch-enum',
19 '-Wno-format-nonliteral',
20 '-Wno-unused-parameter',
21 ],
Brian Silverman3e1563d2015-09-20 16:59:00 -040022)