mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-24 08:44:44 +01:00
don't include rc file on platforms other than windows
This commit is contained in:
parent
edc08ddc08
commit
9ab3c97c44
@ -287,7 +287,12 @@ if (OPT_BUILD_SCHEDULER)
|
|||||||
add_subdirectory("misc_modules/scheduler")
|
add_subdirectory("misc_modules/scheduler")
|
||||||
endif (OPT_BUILD_SCHEDULER)
|
endif (OPT_BUILD_SCHEDULER)
|
||||||
|
|
||||||
add_executable(sdrpp "src/main.cpp" "win32/resources.rc")
|
if (MSVC)
|
||||||
|
add_executable(sdrpp "src/main.cpp" "win32/resources.rc")
|
||||||
|
else ()
|
||||||
|
add_executable(sdrpp "src/main.cpp")
|
||||||
|
endif ()
|
||||||
|
|
||||||
target_link_libraries(sdrpp PRIVATE sdrpp_core)
|
target_link_libraries(sdrpp PRIVATE sdrpp_core)
|
||||||
|
|
||||||
# Compiler arguments
|
# Compiler arguments
|
||||||
|
Loading…
x
Reference in New Issue
Block a user