|
|
|
|
add_compile_options(-fno-access-control)
|
|
|
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
|
add_compile_options(-Wno-thread-safety)
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
add_definitions(-DJUCI_BUILD_PATH="${CMAKE_BINARY_DIR}" -DJUCI_TESTS_PATH="${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
|
${CMAKE_SOURCE_DIR}/src
|
|
|
|
|
${CMAKE_SOURCE_DIR}/libclangmm/src
|
|
|
|
|
${CMAKE_SOURCE_DIR}/tiny-process-library
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_library(test_stubs OBJECT
|
|
|
|
|
stubs/config.cc
|
|
|
|
|
stubs/dialogs.cc
|
|
|
|
|
stubs/directories.cc
|
|
|
|
|
stubs/info.cc
|
|
|
|
|
stubs/notebook.cc
|
|
|
|
|
stubs/project.cc
|
|
|
|
|
stubs/selection_dialog.cc
|
|
|
|
|
stubs/tooltips.cc
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_executable(process_test process_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(process_test juci_shared)
|
|
|
|
|
add_test(process_test process_test)
|
|
|
|
|
|
|
|
|
|
add_executable(compile_commands_test compile_commands_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(compile_commands_test juci_shared)
|
|
|
|
|
add_test(compile_commands_test compile_commands_test)
|
|
|
|
|
|
|
|
|
|
add_executable(filesystem_test filesystem_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(filesystem_test juci_shared)
|
|
|
|
|
add_test(filesystem_test filesystem_test)
|
|
|
|
|
|
|
|
|
|
add_executable(cmake_build_test cmake_build_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(cmake_build_test juci_shared)
|
|
|
|
|
add_test(cmake_build_test cmake_build_test)
|
|
|
|
|
|
|
|
|
|
add_executable(meson_build_test meson_build_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(meson_build_test juci_shared)
|
|
|
|
|
add_test(meson_build_test meson_build_test)
|
|
|
|
|
|
|
|
|
|
add_executable(source_test source_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(source_test juci_shared)
|
|
|
|
|
add_test(source_test source_test)
|
|
|
|
|
|
|
|
|
|
add_executable(source_clang_test source_clang_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(source_clang_test juci_shared)
|
|
|
|
|
add_test(source_clang_test source_clang_test)
|
|
|
|
|
|
|
|
|
|
add_executable(source_generic_test source_generic_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(source_generic_test juci_shared)
|
|
|
|
|
add_test(source_generic_test source_generic_test)
|
|
|
|
|
|
|
|
|
|
add_executable(source_key_test source_key_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(source_key_test juci_shared)
|
|
|
|
|
add_test(source_key_test source_key_test)
|
|
|
|
|
|
|
|
|
|
add_executable(terminal_test terminal_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(terminal_test juci_shared)
|
|
|
|
|
add_test(terminal_test terminal_test)
|
|
|
|
|
|
|
|
|
|
add_executable(usages_clang_test usages_clang_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(usages_clang_test juci_shared)
|
|
|
|
|
add_test(usages_clang_test usages_clang_test)
|
|
|
|
|
|
|
|
|
|
if(LIBLLDB_FOUND)
|
|
|
|
|
add_executable(lldb_test lldb_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(lldb_test juci_shared)
|
|
|
|
|
add_test(lldb_test lldb_test)
|
|
|
|
|
add_subdirectory("lldb_test_files")
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
add_executable(git_test git_test.cc $<TARGET_OBJECTS:test_stubs>)
|
|
|
|
|
target_link_libraries(git_test juci_shared)
|
|
|
|
|
add_test(git_test git_test)
|