aboutsummaryrefslogtreecommitdiff
path: root/drive-sdk/deps/bzle/tools/CMakeLists.txt
blob: aca0e1d6a6e30ee846db87cd6f36d9b9b450e65e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Include the directory itself as a path to include directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)


include_directories(
                    ${bzle_SOURCE_DIR}/include
                    )


set(hciconfig_SOURCES
csr.h csr.c hciconfig.c textfile.c textfile.h
)

add_executable(hciconfig ${hciconfig_SOURCES})
target_link_libraries(hciconfig
                    bzle
                    )

install(TARGETS hciconfig 
    RUNTIME DESTINATION bin
)