Added plotta, added probabilistic code

This commit is contained in:
2019-09-18 09:02:43 +02:00
parent 52eac3a28a
commit a4d49cadb1
9 changed files with 688 additions and 17 deletions

View File

@@ -35,6 +35,9 @@ FILE(GLOB HEADERS
FtmKalman.h
main.h
mainFtm.h
trilateration.h
Plotta.h
misc.h
)
@@ -43,6 +46,8 @@ FILE(GLOB SOURCES
../../Indoor/lib/Recast/*.cpp
main.cpp
mainFtm.cpp
mainTrilat.cpp
mainProb.cpp
)
@@ -113,5 +118,12 @@ TARGET_LINK_LIBRARIES(
# pthread
)
if ("${CMAKE_GENERATOR}" MATCHES "Visual Studio*")
get_filename_component(smartCmdArgJsonFile "ftmprologic.args.json" ABSOLUTE)
MESSAGE(STATUS "Path to json file: " ${smartCmdArgJsonFile})
set_property(TARGET ProLogic PROPERTY VS_GLOBAL_SmartCmdArgJsonFile ${smartCmdArgJsonFile})
endif()
SET(CMAKE_C_COMPILER ${CMAKE_CXX_COMPILER})