1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-25 11:34:09 -04:00

Add support for VS2019 and Ninja

- Specify byproducts in external projects
- Use external Boost
- Remove hacky Qt detection
- Fix CRT mismatch in external projects (fixes SoapySDR on Windows)
- Minor fixes
This commit is contained in:
Kacper Michajłow
2020-11-01 13:03:13 +01:00
parent 2a86bc566a
commit 70434765d7
28 changed files with 201 additions and 244 deletions
+2 -2
View File
@@ -18,7 +18,7 @@
#include <string.h>
#include <regex>
#if defined(__WINDOWS__)
#if defined(_WIN32)
#include <Windows.h>
#include <winbase.h>
#include <tchar.h>
@@ -31,7 +31,7 @@
#include "serialutil.h"
#if defined(__WINDOWS__)
#if defined(_WIN32)
void SerialUtil::getComPorts(std::vector<std::string>& comPorts, const std::string& regexStr)
{
(void) regexStr;