We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1d2f6f commit 7eefde6Copy full SHA for 7eefde6
.github/workflows/build.yml
@@ -41,7 +41,7 @@ jobs:
41
42
- name: Configure CMake
43
run: >
44
- cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=${{ matrix.release }}
+ cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=${{ matrix.release }} -DENABLE_TESTING=ON
45
46
- name: Build
47
run: cmake --build build --config ${{ matrix.release }}
CMakeLists.txt
@@ -52,5 +52,9 @@ if( ENABLE_TESTING )
52
enable_testing()
53
endif()
54
55
+find_package( UDA QUIET )
56
+
57
add_subdirectory( libtokamap )
-add_subdirectory( mapping_plugin )
58
+if( UDA_FOUND )
59
+ add_subdirectory( mapping_plugin )
60
+endif()
0 commit comments