Revert "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_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         ${adaptor_addons_common_src_files}
44         ${adaptor_addons_dummy_src_files}
45 )
46
47 # Builds the c files as c++
48 SET_SOURCE_FILES_PROPERTIES( ${static_libraries_libunibreak_src_files} PROPERTIES LANGUAGE CXX )
49
50 FIND_PACKAGE( pthreads REQUIRED )
51 FIND_PACKAGE( curl REQUIRED )
52 FIND_LIBRARY( GETOPT_LIBRARY NAMES getopt )
53 FIND_LIBRARY( EXIF_LIBRARY NAMES libexif )
54
55 FIND_PACKAGE( png REQUIRED )
56 FIND_PACKAGE( gif REQUIRED )
57 FIND_PACKAGE( jpeg REQUIRED )
58 FIND_LIBRARY( TURBO_JPEG_LIBRARY NAMES turbojpeg )
59
60 FIND_PACKAGE( unofficial-fontconfig REQUIRED )
61 FIND_PACKAGE( freetype REQUIRED )
62 FIND_PACKAGE( harfbuzz REQUIRED )
63 FIND_LIBRARY( FRIBIDI_LIBRARY NAMES fribidi )
64
65 FIND_PACKAGE( unofficial-angle REQUIRED )
66 FIND_PACKAGE( unofficial-cairo REQUIRED )
67
68 FIND_PACKAGE( WebP REQUIRED )
69 SET(DALI_WEBP_AVAILABLE 1)
70 ADD_DEFINITIONS( -DDALI_WEBP_AVAILABLE )
71
72 # Set the linker flags
73 SET( REQUIRED_LIBS
74         PThreads4W::PThreads4W
75         CURL::libcurl
76         ${GETOPT_LIBRARY}
77         ${EXIF_LIBRARY}
78         ${PNG_LIBRARIES}
79         ${GIF_LIBRARIES}
80         JPEG::JPEG
81         ${TURBO_JPEG_LIBRARY}
82         unofficial::fontconfig::fontconfig
83         Freetype::Freetype
84         harfbuzz::harfbuzz
85         ${FRIBIDI_LIBRARY}
86         unofficial::angle::libEGL
87         unofficial::angle::libGLESv2
88         unofficial::cairo::cairo
89         WebP::webp
90         WebP::webpdemux
91         dali2-core::dali2-core
92 )