aboutsummaryrefslogtreecommitdiff
path: root/ports/nana/config.cmake.in
blob: 86d70cc69a1d2087312940dc2e4415f320b7035a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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()