31 lines
608 B
CMake
31 lines
608 B
CMake
|
# Created by and for Qt Creator This file was created for editing the project sources only.
|
||
|
# You may attempt to use it for building too, by modifying this file here.
|
||
|
|
||
|
cmake_minimum_required(VERSION 3.5)
|
||
|
project(hkstreamer)
|
||
|
|
||
|
set(CMAKE_AUTOUIC ON)
|
||
|
set(CMAKE_AUTOMOC ON)
|
||
|
set(CMAKE_AUTORCC ON)
|
||
|
set(CMAKE_CXX_STANDARD 11)
|
||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||
|
|
||
|
|
||
|
include_directories(
|
||
|
include
|
||
|
)
|
||
|
|
||
|
set (SRCS
|
||
|
include/DataType.h
|
||
|
include/DecodeCardSdk.h
|
||
|
include/HCNetSDK.h
|
||
|
include/HkStreamer.h
|
||
|
include/plaympeg4.h
|
||
|
HkStreamer.cpp
|
||
|
main.cpp
|
||
|
)
|
||
|
|
||
|
|
||
|
add_executable(${CMAKE_PROJECT_NAME} ${SRCS})
|
||
|
|