mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-22 02:07:24 +00:00
17 lines
236 B
CMake
17 lines
236 B
CMake
add_library(common_options INTERFACE)
|
|
|
|
target_compile_features(common_options
|
|
INTERFACE
|
|
cxx_std_17
|
|
)
|
|
|
|
target_compile_definitions(common_options
|
|
INTERFACE
|
|
UNICODE
|
|
)
|
|
|
|
if (WIN32)
|
|
include(cmake/options_win.cmake)
|
|
else()
|
|
endif()
|