diff --git a/products/libllbuild/CMakeLists.txt b/products/libllbuild/CMakeLists.txt index 9d6a5d52..a821478b 100644 --- a/products/libllbuild/CMakeLists.txt +++ b/products/libllbuild/CMakeLists.txt @@ -21,10 +21,6 @@ target_link_libraries(llbuild PRIVATE llvmSupport SQLite::SQLite3) -if(CMAKE_SYSTEM_NAME STREQUAL Windows) - set_target_properties(llbuild PROPERTIES LINK_FLAGS "/INCREMENTAL:NO") -endif() - if(NOT CMAKE_SYSTEM_NAME STREQUAL Windows) target_link_libraries(llbuild PRIVATE curses) diff --git a/products/llbuild/CMakeLists.txt b/products/llbuild/CMakeLists.txt index 95066cae..59cbfe5c 100644 --- a/products/llbuild/CMakeLists.txt +++ b/products/llbuild/CMakeLists.txt @@ -10,10 +10,6 @@ target_link_libraries(llbuild-tool PRIVATE llvmSupport SQLite::SQLite3) -if(CMAKE_SYSTEM_NAME STREQUAL Windows) - set_target_properties(llbuild-tool PROPERTIES LINK_FLAGS "/INCREMENTAL:NO") -endif() - set_target_properties(llbuild-tool PROPERTIES OUTPUT_NAME llbuild)