Skip to content

Commit

Permalink
Fix minor nit picks
Browse files Browse the repository at this point in the history
  • Loading branch information
rpashchapur committed May 15, 2024
1 parent 5463123 commit ac5c650
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/UTMSP/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
find_package(Qt6 REQUIRED COMPONENTS Core Network)

# set(UTMSP_RESOURCES)
set(UTMSP_RESOURCES)
qt_add_library(UTMSP STATIC)
option(QGC_CONFIG_UTM_ADAPTER "Enable UTM Adapter" OFF)

option(QGC_UTM_ADAPTER "Enable UTM Adapter" OFF)
if(QGC_UTM_ADAPTER)
option(QGC_CONFIG_UTM_ADAPTER "Enable UTM Adapter" OFF)
if(QGC_CONFIG_UTM_ADAPTER)
message(STATUS "UTMSP is Initialized")

if(NOT nlohmann_json_FOUND)
Expand Down
2 changes: 2 additions & 0 deletions src/Vehicle/Vehicle.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
#include "VehicleTemperatureFactGroup.h"
#include "VehicleVibrationFactGroup.h"
#include "VehicleWindFactGroup.h"
#include "VehicleWindFactGroup.h"

#ifdef QGC_CONFIG_UTM_ADAPTER
#include "UTMSPVehicle.h"
#include "UTMSPManager.h"
Expand Down

0 comments on commit ac5c650

Please sign in to comment.