mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
fc3eeb61f3
Refactoring and reduce binary size. JIRA issue: CORE-19268 - Add cicero static library in sdk/lib/cicero folder. - Delete sdk/include/reactos/cicero folder. - Adapt the dependencies to these changes. - Make ctfmon, msutb, and msctf modules UNICODE.
16 lines
364 B
CMake
16 lines
364 B
CMake
|
|
list(APPEND SOURCE
|
|
cicarray.cpp
|
|
cicbase.cpp
|
|
ciccaret.cpp
|
|
cicfmap.cpp
|
|
cicimc.cpp
|
|
cicreg.cpp
|
|
cicuif.cpp)
|
|
|
|
add_library(cicero STATIC ${SOURCE})
|
|
target_compile_definitions(cicero PRIVATE UNICODE _UNICODE)
|
|
add_dependencies(cicero psdk)
|
|
target_include_directories(cicero INTERFACE
|
|
$<$<COMPILE_LANGUAGE:CXX>:${CMAKE_CURRENT_SOURCE_DIR}>)
|