-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
31 lines (17 loc) · 769 Bytes
/
CMakeLists.txt
File metadata and controls
31 lines (17 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
cmake_minimum_required(VERSION 3.1)
project(rtklib_example)
# include_directories(/usr/local/include/rtklib)
find_package(Eigen3)
include_directories(${EIGEN3_INCLUDE_DIR})
add_executable(rinex_example rinex_example.cpp)
target_link_libraries(rinex_example librtklib.a)
add_executable(satpos_example satpos_example.cpp)
target_link_libraries(satpos_example librtklib.a)
add_executable(spp_example spp_example.cpp)
target_link_libraries(spp_example librtklib.a)
add_executable(rtk_example rtk_example.cpp)
target_link_libraries(rtk_example librtklib.a)
add_executable(ppp_satpos_example ppp_satpos_example.cpp)
target_link_libraries(ppp_satpos_example librtklib.a)
add_executable(ppp_example ppp_example.cpp)
target_link_libraries(ppp_example librtklib.a)