y262/CMakeLists.txt

9 lines
253 B
CMake
Raw Normal View History

2021-04-20 13:12:34 +00:00
cmake_minimum_required(VERSION 3.1)
project(mpeg2enc)
2024-07-21 04:24:53 +00:00
option(BUILD_Y262_APP "Build the Command Line app" OFF)
2021-04-20 13:12:34 +00:00
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/src/y262)
2024-07-21 04:24:53 +00:00
if (BUILD_Y262_APP)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/src/y262app)
endif()