mirror of
https://github.com/estkme-group/lpac
synced 2026-09-06 12:22:23 +02:00
15 lines
275 B
CMake
15 lines
275 B
CMake
add_library(dlfcn-win32 STATIC)
|
|
target_sources(
|
|
dlfcn-win32
|
|
PRIVATE
|
|
dlfcn.c
|
|
)
|
|
target_sources(
|
|
dlfcn-win32
|
|
PUBLIC
|
|
FILE_SET public_headers
|
|
TYPE HEADERS
|
|
BASE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/..
|
|
FILES
|
|
dlfcn.h
|
|
)
|