diff options
author | Daniil Cherednik <dan.cherednik@gmail.com> | 2018-12-02 22:07:57 +0300 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2018-12-02 22:07:57 +0300 |
commit | d4cbd9f4ee9d1348b1ccf64b310952f5a234fafe (patch) | |
tree | 081ee995b7ab1537c75679062550d8579035e3fc /src/CMakeLists.txt | |
parent | d52df7442209819eac6db995420aa32c82c06aeb (diff) | |
download | analogcolor-d4cbd9f4ee9d1348b1ccf64b310952f5a234fafe.tar.gz |
Attempt to use sinusoid extraction (libgha) to improve luma/chroma separation
libgha added as git submodule
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6b5988a..f675ac3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8) +add_subdirectory(libanalog/libgha) + add_definitions( "-Wall -O2 -g" ) #set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -fsanitize=address -fno-omit-frame-pointer") project(analogcolor) @@ -10,4 +12,4 @@ set(SOURCE_EXE ) add_executable(analogcolor ${SOURCE_EXE}) -target_link_libraries(analogcolor m) +target_link_libraries(analogcolor gha m) |