Files
Bilby/CMakeLists.txt
amass a842d429b7
Some checks failed
Deploy Applications / PullDocker (push) Failing after 6m52s
Deploy Applications / Build (push) Failing after 2s
Windows CI / build (push) Has been cancelled
add tool.
2025-10-22 21:51:15 +08:00

21 lines
371 B
CMake

cmake_minimum_required(VERSION 3.17)
project(Bilby)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(Boost REQUIRED COMPONENTS json program_options)
add_executable(Bilby
main.cpp
)
add_executable(shifter
SubtitleShifter.cpp
)
target_link_libraries(shifter
PRIVATE Boost::program_options
)