We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a75cf29 commit 69aa101Copy full SHA for 69aa101
src/CMakeLists.txt
@@ -6,7 +6,9 @@ project(rife-ncnn-vulkan)
6
7
cmake_minimum_required(VERSION 3.9)
8
9
-set(CMAKE_BUILD_TYPE Release)
+if(NOT CMAKE_BUILD_TYPE)
10
+ set(CMAKE_BUILD_TYPE release CACHE STRING "Choose the type of build" FORCE)
11
+endif()
12
13
option(USE_SYSTEM_NCNN "build with system libncnn" OFF)
14
option(USE_SYSTEM_WEBP "build with system libwebp" OFF)
@@ -197,6 +199,8 @@ if(NOT USE_SYSTEM_NCNN)
197
199
option(WITH_LAYER_deconvolutiondepthwise1d "" OFF)
198
200
option(WITH_LAYER_deconvolution3d "" OFF)
201
option(WITH_LAYER_deconvolutiondepthwise3d "" OFF)
202
+ option(WITH_LAYER_einsum "" OFF)
203
+ option(WITH_LAYER_deformableconv2d "" OFF)
204
205
add_subdirectory(ncnn)
206
endif()
src/ncnn
0 commit comments