aboutsummaryrefslogtreecommitdiff
path: root/drive-sdk/examples/vehicle-scan/CMakeLists.txt
blob: f976cfb963711dd9c7975fa5c5f39ccfc1b4b1e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
set(CMAKE_INCLUDE_CURRENT_DIR ON)

SET (CMAKE_C_FLAGS      "")

include_directories(${drivekit_SOURCE_DIR}/include
                    ${bzle_SOURCE_DIR}/include
                    )

# Add sources
set(vehiclescan_SOURCES
                vehicle-scan.c
)

add_executable(vehicle-scan ${vehiclescan_SOURCES})
target_link_libraries(vehicle-scan
                    ankidrive
                    bzle
)

install(TARGETS vehicle-scan 
    RUNTIME DESTINATION bin
)