File: meson.build

package info (click to toggle)
kmscon 9.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,696 kB
  • sloc: ansic: 30,211; sh: 105; python: 89; makefile: 16
file content (16 lines) | stat: -rw-r--r-- 296 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-FileCopyrightText: 2022 Aetf <aetf@unlimited-code.works>
#
# SPDX-License-Identifier: MIT

#
# htable - hash table
#
htable = static_library('ext-htable', ['htable.c'])

htable_deps = declare_dependency(
  link_with: [htable],
  include_directories: [
    include_directories('.'),
  ]
)