Skip to content

Commit c81d65c

Browse files
h3ndrkrillian
authored andcommitted
Fix BOOL generator expression
Signed-off-by: Ralph Giles <giles@thaumas.net> Signed-off-by: evpobr <evpobr@gmail.com>
1 parent 97fbdb1 commit c81d65c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ target_link_libraries(opusfile
6161
PUBLIC
6262
Ogg::ogg
6363
Opus::opus
64-
$<$<BOOL:OP_HAVE_LIBM>:m>
64+
$<$<BOOL:${OP_HAVE_LIBM}>:m>
6565
)
6666
target_compile_options(opusfile
6767
PRIVATE
@@ -167,7 +167,7 @@ if(NOT OP_DISABLE_HTTP)
167167
OpenSSL::SSL
168168
$<$<C_COMPILER_ID:MSVC>:ws2_32>
169169
$<$<C_COMPILER_ID:MSVC>:crypt32>
170-
$<$<BOOL:OP_HAVE_LIBM>:m>
170+
$<$<BOOL:${OP_HAVE_LIBM}>:m>
171171
)
172172
target_compile_options(opusurl
173173
PRIVATE

0 commit comments

Comments
 (0)