Skip to content

Commit

Permalink
TIFF: Fix test file location to be in CMAKE_CURRENT_BINARY_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
HappySeaFox committed Sep 23, 2024
1 parent f3bab2e commit f7e788a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sail-codecs/tiff/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ foreach (tiff_codec IN LISTS TIFF_CODECS)
int main(int argc, char *argv[]) {
TIFF *tiff = TIFFOpen(\"file.tiff\", \"w\");
TIFF *tiff = TIFFOpen(\"${CMAKE_CURRENT_BINARY_DIR}/file.tiff\", \"w\");
if (tiff == NULL) {
return 1;
Expand Down

0 comments on commit f7e788a

Please sign in to comment.