mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 04:23:57 +00:00
24 lines
457 B
CMake
24 lines
457 B
CMake
|
|
list(APPEND SOURCE
|
|
hhpcomp.cpp
|
|
hhp_reader.cpp
|
|
utils.cpp
|
|
chmc/chmc.c
|
|
chmc/err.c
|
|
lzx_compress/lz_nonslide.c
|
|
lzx_compress/lzx_layer.c
|
|
port/mkstemps.c)
|
|
|
|
# used by lzx_compress
|
|
add_definitions(-DNONSLIDE)
|
|
|
|
if(MSVC)
|
|
set_property(SOURCE
|
|
hhpcomp.cpp
|
|
hhp_reader.cpp
|
|
utils.cpp
|
|
APPEND_STRING PROPERTY COMPILE_FLAGS " /EHsc")
|
|
endif()
|
|
|
|
add_executable(hhpcomp ${SOURCE})
|
|
target_link_libraries(hhpcomp)
|