A minimal set IMDb tool using C++
Searches require a '+' in-between keywords
- Search for movies and actors/actresses
- View movies an actor or actress has appeared in
- This project uses C++20, make sure your compiler supports it
# in root directory
cmake -B ./build -DCMAKE_BUILD_TYPE=release -G "Ninja"
# in build directory
cd build && cmake -DCMAKE_CXX_COMPILER_LAUNCHER=ccache .. && ninja- To clean up the executable, use the below command in your terminal
# in root directory
cmake --build ./build --target clean- To setup clangd with this project
- Run the build step first!
- cd build (unless already in build folder)
- Run the following command
# in build directory
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -G "Ninja" ..