summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: 8a0c139ee49800101501c4be521aa8a412169e54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
########################################################################
# Project setup
########################################################################

cmake_minimum_required(VERSION 2.8)
project(etisnoop CXX)

# Select the release build type by default to get optimization flags
if(NOT CMAKE_BUILD_TYPE)
   set(CMAKE_BUILD_TYPE "Release")
   message(STATUS "Build type not specified: defaulting to release.")
endif(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")

list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)

# Set the version information here
set(VERSION_INFO_MAJOR_VERSION 0)
set(VERSION_INFO_API_COMPAT    0)
set(VERSION_INFO_MINOR_VERSION 0)
set(VERSION_INFO_MAINT_VERSION git)


########################################################################
# Compiler specific setup
########################################################################

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -W -Wall -std=c++11")


########################################################################
# Find build dependencies
########################################################################

# libfaad2
find_package(Faad REQUIRED)
include_directories(${FAAD_INCLUDE_DIRS})

# libfec
find_package(Fec REQUIRED)
include_directories(${FEC_INCLUDE_DIRS})

########################################################################
# Setup apps
########################################################################

list(APPEND etisnoop_sources
    dabplussnoop.cpp
    lib_crc.c
    firecode.c
    faad_decoder.cpp
    wavfile.c
    etiinput.cpp
    etisnoop.cpp
    rsdecoder.cpp
)

set_source_files_properties(${etisnoop_sources} PROPERTIES LANGUAGE "CXX")
add_executable(etisnoop ${etisnoop_sources})
target_link_libraries(etisnoop ${FAAD_LIBRARIES} ${FEC_LIBRARIES})

install(TARGETS etisnoop DESTINATION bin)


########################################################################
# Create uninstall target
########################################################################

configure_file(
    "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
    "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
    IMMEDIATE @ONLY)

add_custom_target(uninstall
    COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)