aboutsummaryrefslogtreecommitdiff
path: root/src/bin_geodtest.cmake
blob: b89f75bea2497d911c85cd14e01291ebd04563c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set(GEODTEST_SRC geodtest.c )
set(GEODTEST_INCLUDE)

source_group("Source Files\\Bin" FILES ${GEODTEST_SRC} ${GEODTEST_INCLUDE})

#Executable
add_executable(geodtest ${GEODTEST_SRC} ${GEODTEST_INCLUDE})
target_link_libraries(geodtest ${PROJ_LIBRARIES})
# Do not install

# Instead run as a test
add_test (NAME geodesic-test COMMAND geodtest)