28b0d318ab0c213ce54f257f0f853a31fe67d404
[platform/core/uifw/dali-adaptor.git] / build / tizen / profiles / windows-profile.cmake
1 # PROFILE: WINDOWS
2
3 # Set the sources
4 SET( SOURCES
5         ${adaptor_accessibility_common_src_files}
6         ${adaptor_accessibility_windows_src_files}
7         ${adaptor_adaptor_common_src_files}
8         ${adaptor_clipboard_common_src_files}
9         ${adaptor_framework_generic_src_files}
10         ${devel_api_src_files}
11         ${adaptor_devel_api_text_abstraction_src_files}
12         ${adaptor_graphics_common_src_files}
13         ${adaptor_graphics_gles_src_files}
14         ${adaptor_haptics_common_src_files}
15         ${adaptor_imaging_common_src_files}
16         ${adaptor_input_common_src_files}
17         ${adaptor_integration_api_src_files}
18         ${adaptor_legacy_common_src_files}
19         ${adaptor_network_common_src_files}
20         ${adaptor_public_api_src_files}
21         ${adaptor_sensor_common_src_files}
22         ${adaptor_styling_common_src_files}
23         ${adaptor_system_common_src_files}
24         ${adaptor_system_windows_src_files}
25         ${adaptor_text_common_src_files}
26         ${adaptor_resampler_src_files}
27         ${adaptor_vector_animation_common_src_files}
28         ${adaptor_video_common_src_files}
29         ${adaptor_web_engine_common_src_files}
30         ${adaptor_window_system_common_src_files}
31         ${adaptor_trace_common_src_files}
32         ${adaptor_thread_common_src_files}
33         ${devel_api_text_abstraction_src_files}
34         ${static_libraries_glyphy_src_files}
35         ${static_libraries_libunibreak_src_files}
36         ${adaptor_windows_platform_src_files}
37         ${adaptor_adaptor_windows_src_files}
38         ${adaptor_window_system_windows_src_files}
39         ${adaptor_graphics_windows_src_files}
40         ${adaptor_input_windows_src_files}
41         ${adaptor_clipboard_windows_src_files}
42         ${adaptor_imaging_windows_src_files}
43 )
44
45 # Builds the c files as c++
46 SET_SOURCE_FILES_PROPERTIES( ${static_libraries_libunibreak_src_files} PROPERTIES LANGUAGE CXX )
47
48 FIND_PACKAGE( pthreads REQUIRED )
49 FIND_PACKAGE( curl REQUIRED )
50 FIND_LIBRARY( GETOPT_LIBRARY NAMES getopt )
51 FIND_LIBRARY( EXIF_LIBRARY NAMES libexif )
52
53 FIND_PACKAGE( png REQUIRED )
54 FIND_PACKAGE( gif REQUIRED )
55 FIND_PACKAGE( jpeg REQUIRED )
56 FIND_LIBRARY( TURBO_JPEG_LIBRARY NAMES turbojpeg )
57
58 FIND_PACKAGE( unofficial-fontconfig REQUIRED )
59 FIND_PACKAGE( freetype REQUIRED )
60 FIND_PACKAGE( harfbuzz REQUIRED )
61 FIND_LIBRARY( FRIBIDI_LIBRARY NAMES fribidi )
62
63 FIND_PACKAGE( unofficial-angle REQUIRED )
64 FIND_PACKAGE( unofficial-cairo REQUIRED )
65
66 FIND_PACKAGE( WebP REQUIRED )
67 SET(DALI_WEBP_AVAILABLE 1)
68 ADD_DEFINITIONS( -DDALI_WEBP_AVAILABLE )
69
70 # Set the linker flags
71 SET( REQUIRED_LIBS
72         PThreads4W::PThreads4W
73         CURL::libcurl
74         ${GETOPT_LIBRARY}
75         ${EXIF_LIBRARY}
76         ${PNG_LIBRARIES}
77         ${GIF_LIBRARIES}
78         JPEG::JPEG
79         ${TURBO_JPEG_LIBRARY}
80         unofficial::fontconfig::fontconfig
81         Freetype::Freetype
82         harfbuzz::harfbuzz
83         ${FRIBIDI_LIBRARY}
84         unofficial::angle::libEGL
85         unofficial::angle::libGLESv2
86         unofficial::cairo::cairo
87         WebP::webp
88         WebP::webpdemux
89         dali2-core::dali2-core
90 )