update 2016-11-02 b1
1. created project 2. initialized ir encode and decode source files
This commit is contained in:
27
src/ir_decoder/CMakeLists.txt
Normal file
27
src/ir_decoder/CMakeLists.txt
Normal file
@@ -0,0 +1,27 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(irda_decoder)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
||||
add_definitions(-DBOARD_PC)
|
||||
set(SOURCE_FILES
|
||||
ucon_decode.c
|
||||
ucon_decode.h
|
||||
bc_parse_parameter.c
|
||||
bc_parse_parameter.h
|
||||
irda_lib.c
|
||||
irda_lib.h
|
||||
irda_apply.c
|
||||
irda_apply.h
|
||||
irda_defs.h
|
||||
irda_irframe.c
|
||||
irda_irframe.h
|
||||
irda_parse_ac_parameter.c
|
||||
irda_parse_ac_parameter.h
|
||||
irda_parse_forbidden_info.c
|
||||
irda_parse_forbidden_info.h
|
||||
irda_parse_frame_parameter.c
|
||||
irda_parse_frame_parameter.h
|
||||
irda_utils.c
|
||||
irda_utils.h)
|
||||
|
||||
add_executable(irda_decoder ${SOURCE_FILES})
|
||||
Reference in New Issue
Block a user