mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
42 lines
1 KiB
CMake
42 lines
1 KiB
CMake
|
|
function(add_host_tool _tool)
|
|
add_executable(${_tool} ${ARGN})
|
|
if(NEW_STYLE_BUILD)
|
|
set_target_properties(${_tool} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${TOOLS_FOLDER})
|
|
endif()
|
|
endfunction()
|
|
|
|
#add_executable(pefixup pefixup.c)
|
|
|
|
if(MSVC)
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
add_compile_flags_language("/EHsc" "CXX")
|
|
endif()
|
|
|
|
add_host_tool(bin2c bin2c.c)
|
|
add_host_tool(gendib gendib/gendib.c)
|
|
add_host_tool(geninc geninc/geninc.c)
|
|
add_host_tool(mkshelllink mkshelllink/mkshelllink.c)
|
|
add_host_tool(obj2bin obj2bin/obj2bin.c)
|
|
add_host_tool(spec2def spec2def/spec2def.c)
|
|
|
|
add_host_tool(utf16le utf16le/utf16le.cpp)
|
|
|
|
add_subdirectory(cabman)
|
|
add_subdirectory(hhpcomp)
|
|
add_subdirectory(hpp)
|
|
add_subdirectory(isohybrid)
|
|
add_subdirectory(kbdtool)
|
|
add_subdirectory(mkhive)
|
|
add_subdirectory(mkisofs)
|
|
add_subdirectory(unicode)
|
|
add_subdirectory(widl)
|
|
add_subdirectory(wpp)
|
|
add_subdirectory(xml2sdb)
|
|
|
|
if(NOT MSVC)
|
|
add_subdirectory(log2lines)
|
|
add_subdirectory(rsym)
|
|
endif()
|
|
|
|
add_subdirectory(fatten)
|