File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ add_library(${LIB_LUA_MUTATE} STATIC mutate.c)
1212target_link_libraries (${LIB_LUA_MUTATE} PRIVATE ${LUA_LIBRARIES} ${LDFLAGS} )
1313target_include_directories (${LIB_LUA_MUTATE} PRIVATE ${LUA_INCLUDE_DIR} )
1414target_compile_options (${LIB_LUA_MUTATE} PRIVATE ${CFLAGS} )
15- add_dependencies (${LIB_LUA_MUTATE} ${LUA_TARGET} )
15+ # add_dependencies(${LIB_LUA_MUTATE} ${LUA_TARGET})
1616
1717set (LIB_LUA_CROSSOVER lua_crossover)
1818add_library (${LIB_LUA_CROSSOVER} STATIC crossover.c)
1919target_link_libraries (${LIB_LUA_CROSSOVER} PRIVATE ${LUA_LIBRARIES} ${LDFLAGS} )
2020target_include_directories (${LIB_LUA_CROSSOVER} PRIVATE ${LUA_INCLUDE_DIR} )
2121target_compile_options (${LIB_LUA_CROSSOVER} PRIVATE ${CFLAGS} )
22- add_dependencies (${LIB_LUA_CROSSOVER} ${LUA_TARGET} )
22+ # add_dependencies(${LIB_LUA_CROSSOVER} ${LUA_TARGET})
2323
2424if (ENABLE_INTERNAL_TESTS)
2525 add_subdirectory (tests)
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ function(create_test)
7171 target_link_libraries (${test_name} PUBLIC fuzzer_config ${FUZZ_LIBRARIES} ${LUA_LIBRARIES} ${LDFLAGS} )
7272 target_include_directories (${test_name} PRIVATE ${LUA_INCLUDE_DIR} )
7373 target_compile_options (${test_name} PRIVATE -Wall -Wextra -Wpedantic -Wno-unused-parameter -g)
74- add_dependencies (${test_name} ${LUA_TARGET} )
74+ # add_dependencies(${test_name} ${LUA_TARGET})
7575 string (REPLACE "_test" "" test_prefix ${test_name} )
7676 set (LIBFUZZER_OPTS "${LIBFUZZER_OPTS} -artifact_prefix=${test_name} _" )
7777 if (USE_LUAJIT AND (${test_name} STREQUAL "lua_dump_test" ))
You can’t perform that action at this time.
0 commit comments