mirror of
https://github.com/nestriness/cdc-file-transfer.git
synced 2026-01-30 14:45:37 +02:00
17 lines
360 B
Python
17 lines
360 B
Python
# Description:
|
|
# This project provides Linux compatible Dirent interface for Microsoft Windows.
|
|
#
|
|
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"]) # MIT license
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
cc_library(
|
|
name = "dirent",
|
|
hdrs = ["include/dirent.h"],
|
|
includes = ["include"],
|
|
)
|