[Tizen] Add OffscreenApplication
[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_offscreen_common_src_files}
21         ${adaptor_public_api_src_files}
22         ${adaptor_sensor_common_src_files}
23         ${adaptor_styling_common_src_files}
24         ${adaptor_system_common_src_files}
25         ${adaptor_system_windows_src_files}
26         ${adaptor_text_common_src_files}
27         ${adaptor_resampler_src_files}
28         ${adaptor_vector_animation_common_src_files}
29         ${adaptor_video_common_src_files}
30         ${adaptor_web_engine_common_src_files}
31         ${adaptor_window_system_common_src_files}
32         ${adaptor_trace_common_src_files}
33         ${adaptor_thread_common_src_files}
34         ${devel_api_text_abstraction_src_files}
35         ${static_libraries_glyphy_src_files}
36         ${static_libraries_libunibreak_src_files}
37         ${adaptor_windows_platform_src_files}
38         ${adaptor_adaptor_windows_src_files}
39         ${adaptor_window_system_windows_src_files}
40         ${adaptor_graphics_windows_src_files}
41         ${adaptor_input_windows_src_files}
42         ${adaptor_clipboard_windows_src_files}
43         ${adaptor_imaging_windows_src_files}
44 )
45
46 # Builds the c files as c++
47 SET_SOURCE_FILES_PROPERTIES( ${static_libraries_libunibreak_src_files} PROPERTIES LANGUAGE CXX )
48
49 FIND_PACKAGE( pthreads REQUIRED )
50 FIND_PACKAGE( curl REQUIRED )
51 FIND_LIBRARY( GETOPT_LIBRARY NAMES getopt )
52 FIND_LIBRARY( EXIF_LIBRARY NAMES libexif )
53
54 FIND_PACKAGE( png REQUIRED )
55 FIND_PACKAGE( gif REQUIRED )
56 FIND_PACKAGE( jpeg REQUIRED )
57 FIND_LIBRARY( TURBO_JPEG_LIBRARY NAMES turbojpeg )
58
59 FIND_PACKAGE( unofficial-fontconfig REQUIRED )
60 FIND_PACKAGE( freetype REQUIRED )
61 FIND_PACKAGE( harfbuzz REQUIRED )
62 FIND_LIBRARY( FRIBIDI_LIBRARY NAMES fribidi )
63
64 FIND_PACKAGE( unofficial-angle REQUIRED )
65 FIND_PACKAGE( unofficial-cairo REQUIRED )
66
67 FIND_PACKAGE( WebP REQUIRED )
68 SET(DALI_WEBP_AVAILABLE 1)
69 ADD_DEFINITIONS( -DDALI_WEBP_AVAILABLE )
70
71 # Set the linker flags
72 SET( REQUIRED_LIBS
73         PThreads4W::PThreads4W
74         CURL::libcurl
75         ${GETOPT_LIBRARY}
76         ${EXIF_LIBRARY}
77         ${PNG_LIBRARIES}
78         ${GIF_LIBRARIES}
79         JPEG::JPEG
80         ${TURBO_JPEG_LIBRARY}
81         unofficial::fontconfig::fontconfig
82         Freetype::Freetype
83         harfbuzz::harfbuzz
84         ${FRIBIDI_LIBRARY}
85         unofficial::angle::libEGL
86         unofficial::angle::libGLESv2
87         unofficial::cairo::cairo
88         WebP::webp
89         WebP::webpdemux
90         dali2-core::dali2-core
91 )