mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
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}>)
|