add tool.
Some checks failed
Deploy Applications / PullDocker (push) Failing after 6m52s
Deploy Applications / Build (push) Failing after 2s
Windows CI / build (push) Has been cancelled

This commit is contained in:
2025-10-22 21:51:15 +08:00
parent 0354a73175
commit a842d429b7
6 changed files with 397 additions and 1 deletions

View File

@@ -1,7 +1,21 @@
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
)