diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2019-05-31 14:03:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-31 14:03:12 +0200 |
| commit | eed4fcc218beeae5a4e87790dfba2e3179cabe20 (patch) | |
| tree | 231d47e94ff79fa65363907963e6a422d58fa670 /Source/Core/DiscIO | |
| parent | 2cb59ab055261efd29aaab94edd93a908a9ad835 (diff) | |
| parent | 3d27439d9a83c643aa7ec7c50949f5c1fbf80262 (diff) | |
Merge pull request #8135 from lioncash/cmake
CMakeLists: Specify header files in target sources
Diffstat (limited to 'Source/Core/DiscIO')
| -rw-r--r-- | Source/Core/DiscIO/CMakeLists.txt | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/CMakeLists.txt b/Source/Core/DiscIO/CMakeLists.txt index 78d603acbc..fedfe6f406 100644 --- a/Source/Core/DiscIO/CMakeLists.txt +++ b/Source/Core/DiscIO/CMakeLists.txt @@ -1,26 +1,48 @@ add_library(discio Blob.cpp + Blob.h CISOBlob.cpp - WbfsBlob.cpp + CISOBlob.h CompressedBlob.cpp + CompressedBlob.h DirectoryBlob.cpp + DirectoryBlob.h DiscExtractor.cpp + DiscExtractor.h DiscScrubber.cpp + DiscScrubber.h DriveBlob.cpp + DriveBlob.h Enums.cpp + Enums.h FileBlob.cpp + FileBlob.h FileSystemGCWii.cpp + FileSystemGCWii.h Filesystem.cpp + Filesystem.h NANDImporter.cpp + NANDImporter.h TGCBlob.cpp + TGCBlob.h Volume.cpp + Volume.h VolumeFileBlobReader.cpp + VolumeFileBlobReader.h VolumeGC.cpp + VolumeGC.h VolumeVerifier.cpp + VolumeVerifier.h VolumeWad.cpp + VolumeWad.h VolumeWii.cpp + VolumeWii.h + WbfsBlob.cpp + WbfsBlob.h WiiSaveBanner.cpp + WiiSaveBanner.h WiiWad.cpp + WiiWad.h ) target_link_libraries(discio |
