Skip to content

Commit a805e12

Browse files
committed
build: duktape default package name is lowercase
1 parent 111926d commit a805e12

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
122122
find_package(fmt REQUIRED CONFIG)
123123

124124
# Duktape
125-
find_package(Duktape CONFIG)
125+
find_package(duktape CONFIG)
126126
if (NOT DUKTAPE_FOUND)
127-
# Duktape doesn't nativelly support CMake.
127+
# Duktape doesn't natively support CMake.
128128
# Some config script patches use the capitalized version.
129-
find_package(duktape REQUIRED CONFIG)
129+
find_package(Duktape REQUIRED CONFIG)
130130
endif()
131131

132132
# python

0 commit comments

Comments
 (0)