Explorar el Código

Target visibilities added.

main
offa hace 6 años
padre
commit
59c5cab144
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      test/CMakeLists.txt

+ 2
- 2
test/CMakeLists.txt Ver fichero

@@ -7,12 +7,12 @@ target_include_directories(Trompeloeil INTERFACE "trompeloeil")


add_library(TestMain TestMain.cpp)
target_link_libraries(TestMain Catch Trompeloeil)
target_link_libraries(TestMain PUBLIC Catch Trompeloeil)


function(add_test_suite name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} TestMain ScopeGuard)
target_link_libraries(${name} PRIVATE TestMain ScopeGuard)
add_test(${name} ${name})
endfunction()


Cargando…
Cancelar
Guardar