13 lines
311 B
CMake
13 lines
311 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
set(NAME gps)
|
|
project(Cnomicon-Test)
|
|
set(TARGET ${NAME}_test)
|
|
|
|
# includes
|
|
include_directories(../include/libgps++ ../include)
|
|
link_directories(../lib)
|
|
link_libraries(gps++ net++ net kmlbase kmldom kmlengine pthread rt)
|
|
|
|
# executables
|
|
add_executable(${TARGET} ${TARGET}.cpp)
|