mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
7e069ccdb2
add_target_compile_definitions -> target_compile_definitions add_target_compile_flags -> target_compile_options add_target_include_directories -> target_include_directories
8 lines
173 B
CMake
8 lines
173 B
CMake
|
|
add_host_tool(hpp hpp.c)
|
|
|
|
if(MSVC)
|
|
# Disable warning "'=': conversion from 'a' to 'b', possible loss of data"
|
|
target_compile_options(hpp PRIVATE "/wd4244")
|
|
endif()
|