Skip to content

Commit 5d51a38

Browse files
committed
TMP
1 parent 3833e9e commit 5d51a38

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libluamut/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ add_library(${LIB_LUA_MUTATE} STATIC mutate.c)
1212
target_link_libraries(${LIB_LUA_MUTATE} PRIVATE ${LUA_LIBRARIES} ${LDFLAGS})
1313
target_include_directories(${LIB_LUA_MUTATE} PRIVATE ${LUA_INCLUDE_DIR})
1414
target_compile_options(${LIB_LUA_MUTATE} PRIVATE ${CFLAGS})
15-
add_dependencies(${LIB_LUA_MUTATE} ${LUA_TARGET})
15+
# add_dependencies(${LIB_LUA_MUTATE} ${LUA_TARGET})
1616

1717
set(LIB_LUA_CROSSOVER lua_crossover)
1818
add_library(${LIB_LUA_CROSSOVER} STATIC crossover.c)
1919
target_link_libraries(${LIB_LUA_CROSSOVER} PRIVATE ${LUA_LIBRARIES} ${LDFLAGS})
2020
target_include_directories(${LIB_LUA_CROSSOVER} PRIVATE ${LUA_INCLUDE_DIR})
2121
target_compile_options(${LIB_LUA_CROSSOVER} PRIVATE ${CFLAGS})
22-
add_dependencies(${LIB_LUA_CROSSOVER} ${LUA_TARGET})
22+
# add_dependencies(${LIB_LUA_CROSSOVER} ${LUA_TARGET})
2323

2424
if (ENABLE_INTERNAL_TESTS)
2525
add_subdirectory(tests)

tests/capi/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"))

0 commit comments

Comments
 (0)