mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 09:09:47 +02:00
[CMAKE] Add "/MANIFEST:NO" only to MSVC (#460)
The option "/MANIFEST:NO" is recognized only by Microsoft C++ compiler, so its addition must be limited to this compiler rather than generic target for Windows.
This commit is contained in:
parent
b683ed8c07
commit
84d0cd0220
@ -1041,7 +1041,7 @@ list( APPEND OPTIONS
|
|||||||
|
|
||||||
list( APPEND LDFLAGS
|
list( APPEND LDFLAGS
|
||||||
PRIVATE
|
PRIVATE
|
||||||
$<$<PLATFORM_ID:Windows>:/MANIFEST:NO>
|
$<$<CXX_COMPILER_ID:MSVC>:/MANIFEST:NO>
|
||||||
)
|
)
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user