-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
project(Anime4KCPP_VapourSynth LANGUAGES CXX) | ||
|
||
if(Build_VapourSynth_plugin) | ||
|
||
aux_source_directory(src SOURCE) | ||
aux_source_directory(../Anime4KCore/src Anime4KCPPCoreSource) | ||
|
||
include_directories(../Anime4KCore/include) | ||
|
||
add_compile_definitions(BUILT_IN_KERNEL PARALLEL_SUPPORTS) | ||
|
||
add_library(${PROJECT_NAME} SHARED ${SOURCE} ${Anime4KCPPCoreSource}) | ||
|
||
include(../cmake/ThirdPartyForVS.cmake) | ||
|
||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
find_package(OpenCL REQUIRED) | ||
|
||
include_directories(../ThirdParty/include ${OpenCL_INCLUDE_DIRS}) | ||
|
||
target_link_libraries(${PROJECT_NAME} Anime4KCPPCore) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
find_package(Qt5 COMPONENTS Widgets LinguistTools REQUIRED) | ||
find_package(OpenCV REQUIRED) | ||
find_package(OpenCL REQUIRED) | ||
|
||
include_directories(${OpenCV_INCLUDE_DIRS} ${OpenCL_INCLUDE_DIRS}) | ||
|
||
target_link_libraries(Anime4KCPP_GUI PRIVATE Qt5::Widgets) | ||
target_link_libraries(${PROJECT_NAME} PRIVATE ${OpenCV_LIBS}) | ||
target_link_libraries(${PROJECT_NAME} PRIVATE Anime4KCPPCore) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include_directories(${VapourSynth_SDK_PATH}/include) | ||
|
||
target_link_directories(${PROJECT_NAME} PRIVATE ${VapourSynth_SDK_PATH}/lib64) | ||
|
||
target_link_libraries(${PROJECT_NAME} VapourSynth) | ||
|
||
include(../cmake/ThirdPartyForCore.cmake) |