Skip to content

Commit 3bd8f49

Browse files
committed
CMake: Rename DSDA_STRICT to STRICT_FIND.
1 parent 4af74e9 commit 3bd8f49

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
cmake -S prboom2
159159
-B build
160160
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }}
161-
-DDSDA_STRICT=ON
161+
-DSTRICT_FIND=ON
162162
${{ matrix.config.extra_options }}
163163
164164
- name: Build

prboom2/cmake/DsdaDependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include_guard()
22

3-
if(DSDA_STRICT)
3+
if(STRICT_FIND)
44
set(dsda_strict_keyword)
55
if(CMAKE_VERSION VERSION_GREATER_EQUAL 4.1)
66
set(CMAKE_FIND_REQUIRED ON)

prboom2/cmake/DsdaOptions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set(DOOMWADDIR "${CMAKE_INSTALL_PREFIX}/${default_wad_dir}" CACHE PATH "Path to
1616
set(DSDA_INSTALL_COPYRIGHT_DIR "${default_copyright_dir}" CACHE STRING "Destination of the copyright file")
1717
set(DSDA_INSTALL_BINDIR "${default_bin_dir}" CACHE STRING "Destination of the dsda-doom binary")
1818

19-
option(DSDA_STRICT "Fail configuration if an optional dependency is not found" OFF)
19+
option(STRICT_FIND "Fail configuration if an optional dependency is not found" OFF)
2020
option(SIMPLECHECKS "Enable checks which only impose significant overhead if a posible error is detected" ON)
2121
option(RANGECHECK "Enable internal range checking" OFF)
2222

0 commit comments

Comments
 (0)