early-access version 2853
This commit is contained in:
30
externals/vcpkg/ports/nana/config.cmake.in
vendored
Executable file
30
externals/vcpkg/ports/nana/config.cmake.in
vendored
Executable file
@@ -0,0 +1,30 @@
|
||||
@PACKAGE_INIT@
|
||||
include(CMakeFindDependencyMacro)
|
||||
|
||||
if(UNIX)
|
||||
find_dependency(Threads)
|
||||
find_dependency(Freetype)
|
||||
find_dependency(X11)
|
||||
find_dependency(Fontconfig)
|
||||
endif()
|
||||
|
||||
option(NANA_ENABLE_PNG "Enable PNG support" @NANA_ENABLE_PNG@)
|
||||
option(NANA_ENABLE_JPEG "Enable JPEG support" @NANA_ENABLE_JPEG@)
|
||||
|
||||
if(NANA_ENABLE_PNG)
|
||||
find_dependency(PNG)
|
||||
endif()
|
||||
|
||||
if(NANA_ENABLE_JPEG)
|
||||
find_dependency(JPEG)
|
||||
endif()
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/unofficial-nana-targets.cmake")
|
||||
|
||||
if(UNIX)
|
||||
target_link_libraries(unofficial::nana::nana INTERFACE Fontconfig::Fontconfig ${X11_LIBRARIES} ${X11_Xft_LIB})
|
||||
endif()
|
||||
|
||||
if(NANA_ENABLE_JPEG)
|
||||
target_link_libraries(unofficial::nana::nana INTERFACE ${JPEG_LIBRARIES})
|
||||
endif()
|
||||
Reference in New Issue
Block a user