forked from frejoel/tsdemux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1040d68
commit 93b5023
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ coverage/* | |
*.tlog | ||
**/*.o.dSYM/* | ||
**/Debug/* | ||
**/Release/* | ||
**/Release/* | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
|
||
# set the project name | ||
project(tsdemux) | ||
|
||
# lots of warnings and all warnings as errors | ||
## add_compile_options(-Wall -Wextra ) | ||
set(CMAKE_CXX_STANDARD 17) | ||
|
||
file(GLOB_RECURSE SRC_LIST_C CONFIGURE_DEPENDS "${PROJECT_SOURCE_DIR}/src/*.c" ) | ||
|
||
# define libraries | ||
add_library (tsdemux ${SRC_LIST_C}) | ||
|
||
# define location for header files | ||
target_include_directories(tsdemux PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src ) | ||
|