forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made file extensions explicit for CMake CMP0115.
Converted the CMake files to explicit source file extensions, as needed for CMake policy CMP0115, introduced with CMake 3.20, which is not set to OLD anymore. Thanks to Github user Kurt Sansom (kayarre) for the pull request. This closes Github pull request DCMTK#31.
- Loading branch information
Marco Eichelberg
committed
Aug 25, 2021
1 parent
9e196fd
commit d090b6d
Showing
52 changed files
with
1,211 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# create library from source files | ||
DCMTK_ADD_LIBRARY(dcmect enhanced_ct types) | ||
DCMTK_ADD_LIBRARY(dcmect | ||
enhanced_ct.cc | ||
types.cc) | ||
|
||
DCMTK_TARGET_LINK_MODULES(dcmect dcmfg dcmiod dcmdata ofstd oflog) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
# create library from source files | ||
DCMTK_ADD_LIBRARY(dcmfg | ||
concatenationcreator | ||
concatenationloader | ||
fg | ||
fgbase | ||
fgctacquisitiondetails | ||
fgctacquisitiontype | ||
fgctadditionalxraysource | ||
fgctexposure | ||
fgctgeometry | ||
fgctimageframetype | ||
fgctposition | ||
fgctreconstruction | ||
fgcttabledynamics | ||
fgctxraydetails | ||
fgderimg | ||
fgfact | ||
fgfracon | ||
fgframeanatomy | ||
fgframevoilut | ||
fgpixeltransform | ||
fgimagedatatype | ||
fginterface | ||
fgirradiationeventid | ||
fgpixmsr | ||
fgparametricmapframetype | ||
fgplanor | ||
fgplanorvol | ||
fgplanpo | ||
fgplanposvol | ||
fgrealworldvaluemapping | ||
fgseg | ||
fgtemporalposition | ||
fgusimagedescription | ||
fgtypes | ||
stack | ||
stackinterface) | ||
concatenationcreator.cc | ||
concatenationloader.cc | ||
fg.cc | ||
fgbase.cc | ||
fgctacquisitiondetails.cc | ||
fgctacquisitiontype.cc | ||
fgctadditionalxraysource.cc | ||
fgctexposure.cc | ||
fgctgeometry.cc | ||
fgctimageframetype.cc | ||
fgctposition.cc | ||
fgctreconstruction.cc | ||
fgcttabledynamics.cc | ||
fgctxraydetails.cc | ||
fgderimg.cc | ||
fgfact.cc | ||
fgfracon.cc | ||
fgframeanatomy.cc | ||
fgframevoilut.cc | ||
fgpixeltransform.cc | ||
fgimagedatatype.cc | ||
fginterface.cc | ||
fgirradiationeventid.cc | ||
fgpixmsr.cc | ||
fgparametricmapframetype.cc | ||
fgplanor.cc | ||
fgplanorvol.cc | ||
fgplanpo.cc | ||
fgplanposvol.cc | ||
fgrealworldvaluemapping.cc | ||
fgseg.cc | ||
fgtemporalposition.cc | ||
fgusimagedescription.cc | ||
fgtypes.cc | ||
stack.cc | ||
stackinterface.cc) | ||
|
||
DCMTK_TARGET_LINK_MODULES(dcmfg dcmiod dcmdata ofstd oflog) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,28 @@ | ||
# create library from source files | ||
DCMTK_ADD_LIBRARY(dcmimage diargimg dicmyimg dicoimg dicoopx dicopx dihsvimg dilogger dipalimg dipipng dipitiff diqtctab diqtfs diqthash diqthitl diqtpbox diquant diregist dirgbimg diybrimg diyf2img diyp2img dcmicmph) | ||
DCMTK_ADD_LIBRARY(dcmimage | ||
dcmicmph.cc | ||
diargimg.cc | ||
dicmyimg.cc | ||
dicoimg.cc | ||
dicoopx.cc | ||
dicopx.cc | ||
dihsvimg.cc | ||
dilogger.cc | ||
dipalimg.cc | ||
dipipng.cc | ||
dipitiff.cc | ||
diqtctab.cc | ||
diqtfs.cc | ||
diqthash.cc | ||
diqthitl.cc | ||
diqtpbox.cc | ||
diquant.cc | ||
diregist.cc | ||
dirgbimg.cc | ||
diybrimg.cc | ||
diyf2img.cc | ||
diyp2img.cc | ||
) | ||
|
||
DCMTK_TARGET_LINK_MODULES(dcmimage oflog dcmdata dcmimgle) | ||
DCMTK_TARGET_LINK_LIBRARIES(dcmimage ${LIBTIFF_LIBS} ${LIBPNG_LIBS}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.