We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc08dd commit 9ab3c97Copy full SHA for 9ab3c97
CMakeLists.txt
@@ -287,7 +287,12 @@ if (OPT_BUILD_SCHEDULER)
287
add_subdirectory("misc_modules/scheduler")
288
endif (OPT_BUILD_SCHEDULER)
289
290
-add_executable(sdrpp "src/main.cpp" "win32/resources.rc")
+if (MSVC)
291
+ add_executable(sdrpp "src/main.cpp" "win32/resources.rc")
292
+else ()
293
+ add_executable(sdrpp "src/main.cpp")
294
+endif ()
295
+
296
target_link_libraries(sdrpp PRIVATE sdrpp_core)
297
298
# Compiler arguments
0 commit comments