Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjohnston committed Aug 28, 2024
1 parent 6f6334f commit 4ba6e34
Show file tree
Hide file tree
Showing 17 changed files with 1,874 additions and 79 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ find_package(PNG REQUIRED)
find_package(JPEG REQUIRED)
find_package(TIFF REQUIRED)
find_package(OpenEXR REQUIRED)
find_package(FFmpeg)
find_package(minizip REQUIRED)
find_package(OpenColorIO REQUIRED)
find_package(OpenImageIO REQUIRED)
Expand Down
1 change: 0 additions & 1 deletion SuperBuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ cmake --build superbuild-%BUILD_TYPE% -j 4 --config %BUILD_TYPE%

cmake -S toucan -B build-%BUILD_TYPE% -DCMAKE_INSTALL_PREFIX=%CD%\install-%BUILD_TYPE% -DCMAKE_PREFIX_PATH=%CD%\install-%BUILD_TYPE% -DCMAKE_BUILD_TYPE=%BUILD_TYPE%
cmake --build build-%BUILD_TYPE% -j 4 --config %BUILD_TYPE%
cmake --build build-%BUILD_TYPE% -j 4 --config %BUILD_TYPE% --target RUN_TESTS
1 change: 0 additions & 1 deletion SuperBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ cmake --build superbuild-$BUILD_TYPE -j 4 --config $BUILD_TYPE

cmake -S toucan -B build-$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=$PWD/install-$BUILD_TYPE -DCMAKE_PREFIX_PATH=$PWD/install-$BUILD_TYPE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
cmake --build build-$BUILD_TYPE -j 4 --config $BUILD_TYPE
cmake --build build-$BUILD_TYPE -j 4 --config $BUILD_TYPE --target test
2 changes: 1 addition & 1 deletion bin/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ int main(int argc, char** argv)
}

// Execute the graph.
const auto buf = node->exec(time);
const auto buf = node->exec(time - startTime);

// Save the image.
if (!filmstrip)
Expand Down
Loading

0 comments on commit 4ba6e34

Please sign in to comment.