diff --git a/.gitignore b/.gitignore index da1d64b..cab2bd9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ *.user build/ +.vs/ +out/ +CMakeSettings.json diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c0d3c9..4eff99d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -79,6 +79,7 @@ install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/include/olive" DESTINATION "${CMA if (OLIVECORE_BUILD_TESTS) enable_testing() + message(STATUS "Tests will be built") function(make_test name) add_executable(${name} @@ -87,6 +88,7 @@ if (OLIVECORE_BUILD_TESTS) target_link_libraries(${name} PRIVATE olivecore) target_include_directories(${name} PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include/olive/core" + ${FFMPEG_INCLUDE_DIRS} ) add_test(${name} ${name}) endfunction()