[TOOLS] Fix/suppress all MSVC/x64 warnings (#1525)
[reactos.git] / sdk / tools / isohybrid / CMakeLists.txt
1
2 add_definitions(
3 -DISOHYBRID_C_STANDALONE)
4
5 add_host_tool(isohybrid
6 isohybrid.c
7 reactos_support_code.c)
8
9 if(MSVC)
10 # Disable warning "'x': unreferenced local variable"
11 add_target_compile_flags(isohybrid "/wd4101")
12
13 # Disable warning "'return': conversion from '__int64' to 'int', possible loss of data"
14 add_target_compile_flags(isohybrid "/wd4244")
15 endif()