forked from dokan-dev/dokany
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dokan_fuse: Add libfuse-compatible pkg-config
Generate a pkg-config-file that can be used as a drop-in "replacement" for libfuse, i.e. $ pkg-config --libs --cflags fuse will return the dokanfuse-flags. Closes dokan-dev#338.
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
prefix=@CMAKE_INSTALL_PREFIX@ | ||
exec_prefix=${prefix} | ||
libdir=@PKG_CONFIG_LIBDIR@ | ||
includedir=@PKG_CONFIG_INCLUDEDIR@ | ||
|
||
Name: Dokan FUSE | ||
Description: FUSE-API compatibility library for the Dokan user mode filesystem driver for Windows | ||
# Dokan FUSE provides compatibility with libfuse 2.6.x. | ||
# The corresponding libfuse-version is therefore reported instead of the Dokan FUSE-version | ||
Version: 2.6.0 | ||
URL: https://dokan-dev.github.io | ||
Libs: -L${libdir} -l@PROJECT_NAME@ | ||
Cflags: -I${includedir} -D_FILE_OFFSET_BITS=64 |