cmake target_sources examples

Signatures

target_sources(<target>
  <INTERFACE|PUBLIC|PRIVATE> [items1...]
[<INTERFACE|PUBLIC|PRIVATE> [items2...] ...])
target_sources(<target>
  [<INTERFACE|PUBLIC|PRIVATE>
  [FILE_SET <set> [TYPE <type>] [BASE_DIRS <dirs>...] [FILES <files>...]]...
  ]...)

Examples

novelrt/NovelRT cmake/NovelRTBuildSystem.cmake :120

target_sources(${cmakeSafeName}
    INTERFACE ${declareModule_SOURCES_INTERFACE} ${declareModule_RESOURCES_INTERFACE}
    PUBLIC ${declareModule_SOURCES_PUBLIC} ${declareModule_RESOURCES_PUBLIC}
    PRIVATE ${declareModule_SOURCES_PRIVATE} ${declareModule_RESOURCES_PRIVATE}

    INTERFACE FILE_SET interface_headers
    TYPE HEADERS
    BASE_DIRS include ${declareModule_HEADERS_BASE_DIRS}
    FILES ${declareModule_HEADERS_INTERFACE}
    PUBLIC FILE_SET public_headers
    TYPE HEADERS
    BASE_DIRS include ${declareModule_HEADERS_BASE_DIRS}
    FILES ${declareModule_HEADERS_PUBLIC}
    PRIVATE FILE_SET private_headers
    TYPE HEADERS
    BASE_DIRS include ${declareModule_HEADERS_BASE_DIRS}
    FILES ${declareModule_HEADERS_PRIVATE}

    INTERFACE FILE_SET interface_resources
    TYPE HEADERS
    BASE_DIRS Resources ${declareModule_RESOURCES_BASE_DIRS}
    FILES ${declareModule_RESOURCES_INTERFACE}
    PUBLIC FILE_SET public_resources
    TYPE HEADERS
    BASE_DIRS Resources ${declareModule_RESOURCES_BASE_DIRS}
    FILES ${declareModule_RESOURCES_PUBLIC}
    PRIVATE FILE_SET private_resources
    TYPE HEADERS
    BASE_DIRS Resources ${declareModule_RESOURCES_BASE_DIRS}
    FILES ${declareModule_RESOURCES_PRIVATE})

PacktPublishing/3D-Graphics-Rendering-Cookbook Chapter2/08_ETC2Comp/CMakeLists.txt :9

target_sources(Ch2_Sample08_ETC2Comp PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/../../../deps/src/etc2comp/EtcTool/EtcFile.cpp)

JeanPhilippeKernel/RendererEngine Obelisk/CMakeLists.txt :20

target_sources(${TARGET_NAME} PUBLIC EntryPoint.cpp)

RavEngine/RavEngine cmake/pack_resources.cmake :110

target_sources(${ARGS_TARGET} PUBLIC ${ARGS_OBJECTS} ${ARGS_TEXTURES} ${ARGS_SOUNDS} ${ARGS_MESHES} ${ARGS_SKELETONS} ${ARGS_ANIMATIONS})

kokkos/kokkos cmake/kokkos_tribits.cmake :373

target_sources(
        ${LIBRARY_NAME} PUBLIC FILE_SET ${LIBRARY_NAME}_file_set TYPE CXX_MODULES FILES ${PARSE_MODULE_INTERFACE}
      )

eclipse-ecal/ecal lang/python/src/core/CMakeLists.txt :40

target_sources(${PROJECT_NAME}
  PUBLIC    
    FILE_SET ecal_core_python_files
    TYPE HEADERS
    BASE_DIRS ./ecal
    FILES
      ${python_files}
)

meganz/MEGAcmd build/cmake/modules/megacmd_utility_functions.cmake :23

target_sources(${TARGET} PUBLIC ${_source} ${header})

etternagame/etterna CMake/Helpers/CMakeMacOS.cmake :31

target_sources(Etterna PUBLIC CMake/CPack/macOS/etterna.icns)

NREL/OpenStudio ruby/interpreter/CMakeLists.txt :21

target_sources(rubyinterpreter PUBLIC INTERFACE
    RubyInterpreter.hpp
    RubyEval.hpp
    RubyException.hpp
    "${CMAKE_CURRENT_BINARY_DIR}/SWIGRubyRuntime.hxx"
  )

supercollider/supercollider server/supernova/CMakeLists.txt :169

target_sources(libsupernova PUBLIC ${CMAKE_SOURCE_DIR}/common/SC_PaUtils.cpp)

MaaAssistantArknights/MaaAssistantArknights src/MaaCore/CMakeLists.txt :28

target_sources(MaaCore PUBLIC ${MaaCore_PUBLIC_HEADERS})

WerWolv/Fenestra cmake/modules/FenestraPlugin.cmake :24

target_sources(main PUBLIC ${FENESTRA_MAIN_OUTPUT_DIRECTORY}/plugin-bundle.cpp)

ml-explore/mlx examples/extensions/CMakeLists.txt :35

target_sources(mlx_ext PUBLIC ${CMAKE_CURRENT_LIST_DIR}/axpby/axpby.cpp)

ezEngine/ezEngine Code/BuildSystem/CMake/CMakeUtils/ezUtilsUWP.cmake :40

target_sources(${TARGET_NAME} PUBLIC ${_dll_location})

JSBSim-Team/jsbsim tests/unit_tests/CMakeLists.txt :38

target_sources(FGMSISTest1 PUBLIC
                  ${MSIS_SOURCE_DIR}/nrlmsise-00.c
                  ${MSIS_SOURCE_DIR}/nrlmsise-00_data.c)

gnss-sdr/gnss-sdr src/algorithms/acquisition/adapters/CMakeLists.txt :88

target_sources(acquisition_adapters
        PRIVATE
            ${ACQ_ADAPTER_SOURCES}
        PUBLIC
            ${ACQ_ADAPTER_HEADERS}
    )

ossia/score src/plugins/score-plugin-avnd/CMakeLists.txt :79

target_sources(avnd_halp_module
  PUBLIC
    FILE_SET CXX_MODULES
    FILES
      "halp.cppm"
)

ByteWelder/Tactility Boards/Simulator/CMakeLists.txt :10

target_sources(Simulator
        PRIVATE ${SOURCES}
        PUBLIC ${HEADERS}
    )

AcademySoftwareFoundation/MaterialX CMakeLists.txt :388

target_sources(${TARGET_NAME}
        PRIVATE
            ${args_SOURCE_FILES}
        PUBLIC
            FILE_SET
                mxHeaders
            TYPE
                HEADERS
            BASE_DIRS
                ${CMAKE_CURRENT_SOURCE_DIR}/..
                ${CMAKE_CURRENT_BINARY_DIR}/..
            FILES
                ${args_HEADER_FILES}
                ${args_INLINED_FILES})

w111liang222/lidar-slam-detection slam/thirdparty/fast_gicp/thirdparty/Eigen/cmake/FindComputeCpp.cmake :365

target_sources(${SDK_BUILD_IR_TARGET} PUBLIC ${SDK_BUILD_IR_SOURCE} ${outputSyclFile})

varoudis/depthmapX depthmapX/dialogs/CMakeLists.txt :1

target_sources(depthmapX
    PUBLIC
        TopoMetDlg.h
        SegmentAnalysisDlg.h
        RenameObjectDlg.h
        PushDialog.h
        PromptReplace.h
        OptionsDlg.h
        NewLayerDlg.h
        MakeOptionsDlg.h
        MakeLayerDlg.h
        LicenceDialog.h
        LayerChooserDlg.h
        IsovistPathDlg.h
        InsertColumnDlg.h
        GridDialog.h
        FindLocDlg.h
        FilePropertiesDlg.h
        FewestLineOptionsDlg.h
        EditConnectionsDlg.h
        ConvertShapesDlg.h
        ColumnPropertiesDlg.h
        ColourScaleDlg.h
        AxialAnalysisOptionsDlg.h
        AttributeSummary.h
        AttributeChooserDlg.h
        AgentAnalysisDlg.h
        AboutDlg.h
        licenseagreement.h
        settings/generalpage.h
        settings/interfacepage.h
        settings/settingspage.h
        settings/settingsdialog.h
    PRIVATE
        TopoMetDlg.cpp
        SegmentAnalysisDlg.cpp
        RenameObjectDlg.cpp
        PushDialog.cpp
        PromptReplace.cpp
        OptionsDlg.cpp
        NewLayerDlg.cpp
        MakeOptionsDlg.cpp
        MakeLayerDlg.cpp
        LicenceDialog.cpp
        LayerChooserDlg.cpp
        IsovistPathDlg.cpp
        InsertColumnDlg.cpp
        GridDialog.cpp
        FindLocDlg.cpp
        FilePropertiesDlg.cpp
        FewestLineOptionsDlg.cpp
        EditConnectionsDlg.cpp
        ConvertShapesDlg.cpp
        ColumnPropertiesDlg.cpp
        ColourScaleDlg.cpp
        AxialAnalysisOptionsDlg.cpp
        AttributeSummary.cpp
        AttributeChooserDlg.cpp
        AgentAnalysisDlg.cpp
        AboutDlg.cpp
        licenseagreement.cpp
        settings/generalpage.cpp
        settings/interfacepage.cpp
        settings/settingsdialog.cpp)

WerWolv/ImHex cmake/modules/ImHexPlugin.cmake :20

target_sources(main PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/plugin-bundle.cpp)

OSGeo/PROJ cmake/FileEmbed.cmake :22

target_sources(file_embed PUBLIC ${var})

apache/trafficserver cmake/add_cripts_bundle.cmake :19

target_sources(cripts PUBLIC ${ARGN})

STEllAR-GROUP/hpx cmake/HPX_AddModule.cmake :397

target_sources(
      hpx_${modulename} PUBLIC
          FILE_SET hpx_${modulename}_public_sources
              TYPE CXX_MODULES
              BASE_DIRS ${lib_module_basedir}
              FILES ${lib_module_file}
    )

hlrs-vis/covise src/OpenCOVER/plugins/ukoeln/ANARI/rr/CMakeLists.txt :41

target_sources(minirr PUBLIC ${SOURCES})

univrsal/input-overlay cmake/common/helpers_common.cmake :47

target_sources(
    plugin-support
    PRIVATE plugin-support.c
    PUBLIC src/plugin-support.h)

YosysHQ/nextpnr 3rdparty/oourafft/CMakeLists.txt :5

target_sources(oourafft PUBLIC
    fftsg.cc
    fftsg.h
    fftsg2d.cc
)

root-project/root cmake/modules/RootMacros.cmake :2431

target_sources(${targetname_libgen} PUBLIC ${ARG_SOURCES})

CLIUtils/CLI11 tests/CMakeLists.txt :197

target_sources(FuzzFailTest PUBLIC ${PROJECT_SOURCE_DIR}/fuzz/fuzzApp.cpp)

alibaba/async_simple async_simple/CMakeLists.txt :43

target_sources(async_simple_static
      PUBLIC
        FILE_SET CXX_MODULES FILES
          ${MODULES_SRCS}
    )

google/filament third_party/dawn/src/cmake/DawnLibrary.cmake :127

target_sources("${name}"
      PUBLIC
        ${arg_HEADERS})

Devsh-Graphics-Programming/Nabla cmake/common.cmake :504

target_sources(${EXECUTABLE_NAME} PUBLIC "${_NBL_JSON_CONFIG_FILEPATH_}")

mir-diablo-ii-tools/SlashGaming-Diablo-II-Free-Resolution external/cutest-1.5/CMakeLists.txt :20

target_sources(${PROJECT_NAME}
    PRIVATE
        "${CMAKE_CURRENT_SOURCE_DIR}/CuTest.c"
    PUBLIC
        "${CMAKE_CURRENT_SOURCE_DIR}/CuTest.h")

LunarG/gfxreconstruct android/framework/application/CMakeLists.txt :3

target_sources(gfxrecon_application
               PUBLIC
                   ${GFXRECON_SOURCE_DIR}/framework/application/android_context.h
                   ${GFXRECON_SOURCE_DIR}/framework/application/android_context.cpp
                   ${GFXRECON_SOURCE_DIR}/framework/application/android_window.h
                   ${GFXRECON_SOURCE_DIR}/framework/application/android_window.cpp
                   ${GFXRECON_SOURCE_DIR}/framework/application/application.h
                   ${GFXRECON_SOURCE_DIR}/framework/application/application.cpp
                   ${GFXRECON_SOURCE_DIR}/framework/application/wsi_context.h
                   ${GFXRECON_SOURCE_DIR}/framework/application/wsi_context.cpp
                   ${GFXRECON_SOURCE_DIR}/framework/application/android_jni.cpp
              )

nanodbc/nanodbc CMakeLists.txt :82

target_sources(nanodbc
  PUBLIC FILE_SET HEADERS FILES
  nanodbc/nanodbc.h
  $<$<CXX_COMPILER_ID:MSVC>:nanodbc/variant_row_cached_result.h>)

cycfi/artist lib/CMakeLists.txt :305

target_sources(artist
   PRIVATE ${ARTIST_SOURCES} ${ARTIST_IMPL}
   PUBLIC ${ARTIST_HEADERS}
)

manticoresoftware/manticoresearch src/CMakeLists.txt :239

target_sources ( lmanticore PUBLIC ${LMANTICORE_BISON} ${LMANTICORE_FLEX} ${HEADERS} ${CHARSET_FILES} ${CHARSET_TEMPLATE} "../misc/manticore.natvis" )

scylladb/seastar src/CMakeLists.txt :6

target_sources (seastar-module
  PUBLIC
    FILE_SET CXX_MODULES
    TYPE CXX_MODULES
    FILES
      seastar.cc
  PRIVATE
    core/alien.cc
    core/app-template.cc
    core/condition-variable.cc
    core/disk_params.cc
    core/exception_hacks.cc
    core/execution_stage.cc
    core/fair_queue.cc
    core/file.cc
    core/fsnotify.cc
    core/fstream.cc
    core/future-util.cc
    core/future.cc
    core/io_queue.cc
    core/linux-aio.cc
    core/memory.cc
    core/metrics.cc
    core/on_internal_error.cc
    core/posix.cc
    core/program_options.cc
    core/reactor.cc
    core/reactor_backend.cc
    core/resource.cc
    core/sharded.cc
    core/scollectd.cc
    core/semaphore.cc
    core/signal.cc
    core/smp.cc
    core/sstring.cc
    core/systemwide_memory_barrier.cc
    core/thread.cc
    core/thread_pool.cc
    core/uname.cc
    util/alloc_failure_injector.cc
    util/backtrace.cc
    util/conversions.cc
    util/file.cc
    util/log.cc
    util/process.cc
    util/program-options.cc
    util/read_first_line.cc
    util/short_streams.cc
    net/config.cc
    net/arp.cc
    net/dhcp.cc
    net/dpdk.cc
    net/ip.cc
    net/tcp.cc
    net/udp.cc
    net/stack.cc
    net/native-stack.cc
    net/posix-stack.cc
    net/net.cc
    net/proxy.cc
    net/ip_checksum.cc
    net/packet.cc
    net/inet_address.cc
    net/socket_address.cc
    net/tls.cc
    net/virtio.cc
    http/client.cc
    http/common.cc
    http/file_handler.cc
    http/httpd.cc
    http/json_path.cc
    http/matcher.cc
    http/mime_types.cc
    http/reply.cc
    http/request.cc
    http/routes.cc
    http/transformers.cc
    http/url.cc
    json/formatter.cc
    json/json_elements.cc
  )

infiniflow/infinity src/CMakeLists.txt :307

target_sources(infinity_core
        PUBLIC
        FILE_SET core_cxx_modules TYPE CXX_MODULES FILES
        ${main_cppm}
        ${infinity_cppm}
        ${common_cppm}
        ${planner_cppm}
        ${scheduler_cppm}
        ${storage_cppm}
        ${parser_cppm}
        ${function_cppm}
        ${expression_cppm}
        ${executor_cppm}
        ${metrics_cppm}
        ${admin_cppm}
        ${network_cppm}

        # for cmake bug
        ${infinity_impl_cpp}
        ${planner_impl_cpp}
        ${scheduler_impl_cpp}
        ${storage_impl_cpp}
        ${function_impl_cpp}
        ${expression_impl_cpp}
        ${executor_impl_cpp}
        ${metrics_impl_cpp}
        ${common_impl_cpp}
        ${admin_impl_cpp}
        ${network_impl_cpp}
        #        ${parser_impl_cpp}
)

vseasky/VersaAssistant assimp/test/CMakeLists.txt :227

target_sources(unit PUBLIC ${Assimp_SOURCE_DIR}/contrib/gtest/src/gtest-all.cc)

rAthenaCN/rAthenaCN 3rdparty/rapidyaml/ext/c4core/cmake/c4Project.cmake :2192

target_sources(${target} PUBLIC "${_PUBLIC}")

KiCad/kicad-source-mirror thirdparty/fmt/CMakeLists.txt :75

target_sources(${name} PUBLIC FILE_SET fmt TYPE CXX_MODULES
                   FILES ${sources})

mixxxdj/mixxx CMakeLists.txt :2297

target_sources(mixxx PUBLIC ${IOS_RESOURCES})

DistroAV/DistroAV cmake/common/helpers_common.cmake :43

target_sources(plugin-support PRIVATE plugin-support.c PUBLIC src/plugin-support.h)

celtera/avendish cmake/avendish.sources.cmake :32

target_sources(Avendish
  PUBLIC
    ${AVENDISH_SOURCES}
    $<TARGET_OBJECTS:avnd_dummy_lib>
)

NauEngine/NauEnginePublic engine/3rdparty_libs/ozz/build-utils/cmake/shared_library.cmake :46

target_sources(${_TARGET} PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/${_TARGET}_dll_copy")

mandarine3ds/mandarine src/common/CMakeLists.txt :165

target_sources(mandarine_common PUBLIC
        apple_authorization.h
        apple_authorization.cpp
    )

project-chip/connectedhomeip examples/platform/mbed/bootloader/CMakeLists.txt :21

target_sources(${APP_TARGET}
    PUBLIC
        default_bd.cpp
        signing_keys.c
)

rbfx/rbfx Source/ThirdParty/Diligent/ThirdParty/Vulkan-Headers/CMakeLists.txt :60

target_sources(Vulkan-Module
        PUBLIC
            FILE_SET module
                TYPE CXX_MODULES
                BASE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/include"
                FILES "${CMAKE_CURRENT_SOURCE_DIR}/include/vulkan/vulkan.cppm"
    )

OpenDDS/OpenDDS dds/CMakeLists.txt :196

target_sources(OpenDDS_Dcps
  PUBLIC FILE_SET HEADERS
  BASE_DIRS "${OPENDDS_SOURCE_DIR}"
  FILES
    ../FACE/Fixed.h
    ../FACE/OpenDDS_FACE_Export.h
    ../FACE/Sequence.h
    ../FACE/SequenceVar.h
    ../FACE/StringManager.h
    ../FACE/TS.hpp
    ../FACE/TS_common.hpp
    ../FACE/common.hpp
    ../FACE/types.hpp
    DCPS/AddressCache.h
    DCPS/AssociationData.h
    DCPS/AstNodeWrapper.h
    DCPS/Atomic.h
    DCPS/AtomicBool.h
    DCPS/BitPubListenerImpl.h
    DCPS/BuiltInTopicDataReaderImpls.h
    DCPS/BuiltInTopicUtils.h
    DCPS/Cached_Allocator_With_Overflow_T.h
    DCPS/CoherentChangeControl.h
    DCPS/CoherentChangeControl.inl
    DCPS/Comparator_T.h
    DCPS/ConditionImpl.h
    DCPS/ConditionVariable.h
    DCPS/ConfigStoreImpl.h
    DCPS/ConnectionRecords.h
    DCPS/ContentFilteredTopicImpl.h
    DCPS/DCPS_Utils.h
    DCPS/DataBlockLockPool.h
    DCPS/DataCollector_T.cpp
    DCPS/DataCollector_T.h
    DCPS/DataCollector_T.inl
    DCPS/DataDurabilityCache.h
    DCPS/DataReaderCallbacks.h
    DCPS/DataReaderImpl.h
    DCPS/DataReaderImpl.inl
    DCPS/DataReaderImpl_T.h
    DCPS/DataSampleElement.h
    DCPS/DataSampleElement.inl
    DCPS/DataSampleHeader.h
    DCPS/DataSampleHeader.inl
    DCPS/DataWriterCallbacks.h
    DCPS/DataWriterImpl.h
    DCPS/DataWriterImpl_T.h
    DCPS/DcpsUpcalls.h
    DCPS/DdsDcps_pch.h
    DCPS/DefaultNetworkConfigMonitor.h
    DCPS/Definitions.h
    DCPS/DirentWrapper.h
    DCPS/Discovery.h
    DCPS/DiscoveryListener.h
    DCPS/DisjointSequence.h
    DCPS/DisjointSequence.inl
    DCPS/DispatchService.h
    DCPS/DomainParticipantFactoryImpl.h
    DCPS/DomainParticipantImpl.h
    DCPS/DurabilityArray.h
    DCPS/DurabilityQueue.h
    DCPS/Dynamic_Cached_Allocator_With_Overflow_T.h
    DCPS/EncapsulationHeader.h
    DCPS/EndpointCallbacks.h
    DCPS/EntityImpl.h
    DCPS/EventDispatcher.h
    DCPS/FeatureDisabledQosCheck.h
    DCPS/FibonacciSequence.h
    DCPS/FileSystemStorage.h
    DCPS/FilterEvaluator.h
    DCPS/FilterExpressionGrammar.h
    DCPS/FlexibleTypeSupport.h
    DCPS/GroupRakeData.h
    DCPS/GuardCondition.h
    DCPS/GuidBuilder.h
    DCPS/GuidBuilder.inl
    DCPS/GuidConverter.h
    DCPS/GuidUtils.h
    DCPS/Hash.h
    DCPS/Ice.h
    DCPS/InstanceDataSampleList.h
    DCPS/InstanceDataSampleList.inl
    DCPS/InstanceHandle.h
    DCPS/InstanceState.h
    DCPS/InstanceState.inl
    DCPS/InternalDataReader.h
    DCPS/InternalDataReaderListener.h
    DCPS/InternalDataWriter.h
    DCPS/InternalTopic.h
    DCPS/JobQueue.h
    DCPS/JsonValueReader.h
    DCPS/JsonValueWriter.h
    DCPS/LinuxNetworkConfigMonitor.h
    DCPS/LocalObject.h
    DCPS/LogAddr.h
    DCPS/Logging.h
    DCPS/Marked_Default_Qos.h
    DCPS/MemoryPool.h
    DCPS/MessageBlock.h
    DCPS/MessageTracker.h
    DCPS/Message_Block_Ptr.h
    DCPS/MonitorFactory.h
    DCPS/MultiTask.h
    DCPS/MultiTopicDataReaderBase.h
    DCPS/MultiTopicDataReader_T.cpp
    DCPS/MultiTopicDataReader_T.h
    DCPS/MultiTopicImpl.h
    DCPS/MulticastManager.h
    DCPS/NetworkAddress.h
    DCPS/NetworkConfigModifier.h
    DCPS/NetworkConfigMonitor.h
    DCPS/NetworkResource.h
    DCPS/NetworkResource.inl
    DCPS/Observer.h
    DCPS/OwnershipManager.h
    DCPS/PeriodicEvent.h
    DCPS/PeriodicTask.h
    DCPS/PoolAllocationBase.h
    DCPS/PoolAllocator.h
    DCPS/PrinterValueWriter.h
    DCPS/PublicationInstance.h
    DCPS/PublisherImpl.h
    DCPS/Qos_Helper.h
    DCPS/Qos_Helper.inl
    DCPS/QueryConditionImpl.h
    DCPS/RakeData.h
    DCPS/RakeResults_T.cpp
    DCPS/RakeResults_T.h
    DCPS/RapidJsonWrapper.h
    DCPS/RawDataSample.h
    DCPS/RcEventHandler.h
    DCPS/RcHandle_T.h
    DCPS/RcObject.h
    DCPS/ReactorTask.h
    DCPS/ReactorTask.inl
    DCPS/ReactorTask_rch.h
    DCPS/ReadConditionImpl.h
    DCPS/ReceivedDataElementList.h
    DCPS/ReceivedDataElementList.inl
    DCPS/ReceivedDataStrategy.h
    DCPS/Recorder.h
    DCPS/RecorderImpl.h
    DCPS/Registered_Data_Types.h
    DCPS/Replayer.h
    DCPS/ReplayerImpl.h
    DCPS/RepoIdBuilder.h
    DCPS/RepoIdBuilder.inl
    DCPS/RepoIdConverter.h
    DCPS/RepoIdGenerator.h
    DCPS/RestoreOutputStreamState.h
    DCPS/SafeBool_T.h
    DCPS/SafetyProfilePool.h
    DCPS/SafetyProfileSequence.h
    DCPS/SafetyProfileSequenceVar.h
    DCPS/SafetyProfileSequences.h
    DCPS/SafetyProfileStreams.h
    DCPS/Sample.h
    DCPS/SendStateDataSampleList.h
    DCPS/SendStateDataSampleList.inl
    DCPS/SequenceIterator.h
    DCPS/SequenceNumber.h
    DCPS/Serializer.h
    DCPS/Serializer.inl
    DCPS/ServiceEventDispatcher.h
    DCPS/Service_Participant.h
    DCPS/Service_Participant.inl
    DCPS/SporadicEvent.h
    DCPS/SporadicTask.h
    DCPS/StaticDiscovery.h
    DCPS/StaticIncludes.h
    DCPS/Statistics.h
    DCPS/Stats_T.h
    DCPS/StatusConditionImpl.h
    DCPS/SubscriberImpl.h
    DCPS/SubscriptionInstance.h
    DCPS/ThreadPool.h
    DCPS/ThreadStatusManager.h
    DCPS/TimeDuration.h
    DCPS/TimeDuration.inl
    DCPS/TimePoint_T.cpp
    DCPS/TimePoint_T.h
    DCPS/TimePoint_T.inl
    DCPS/TimeSource.h
    DCPS/TimeTypes.h
    DCPS/Time_Helper.h
    DCPS/Time_Helper.inl
    DCPS/TopicCallbacks.h
    DCPS/TopicDescriptionImpl.h
    DCPS/TopicDetails.h
    DCPS/TopicExpressionGrammar.h
    DCPS/TopicImpl.h
    DCPS/Transient_Kludge.h
    DCPS/Transient_Kludge.inl
    DCPS/TypeSupportImpl.h
    DCPS/TypeSupportImpl_T.h
    DCPS/Util.h
    DCPS/ValueCommon.h
    DCPS/ValueDispatcher.h
    DCPS/ValueHelper.h
    DCPS/ValueReader.h
    DCPS/ValueWriter.h
    DCPS/WaitSet.h
    DCPS/WriteDataContainer.h
    DCPS/WriterDataSampleList.h
    DCPS/WriterDataSampleList.inl
    DCPS/WriterInfo.h
    DCPS/XTypes/DynamicDataAdapter.h
    DCPS/XTypes/DynamicDataAdapterFwd.h
    DCPS/XTypes/DynamicDataBase.h
    DCPS/XTypes/DynamicDataFactory.h
    DCPS/XTypes/DynamicDataImpl.h
    DCPS/XTypes/DynamicDataReaderImpl.h
    DCPS/XTypes/DynamicDataWriterImpl.h
    DCPS/XTypes/DynamicDataXcdrReadImpl.h
    DCPS/XTypes/DynamicSample.h
    DCPS/XTypes/DynamicTypeImpl.h
    DCPS/XTypes/DynamicTypeMemberImpl.h
    DCPS/XTypes/DynamicTypeSupport.h
    DCPS/XTypes/DynamicVwrite.h
    DCPS/XTypes/External.h
    DCPS/XTypes/IdlScanner.h
    DCPS/XTypes/MemberDescriptorImpl.h
    DCPS/XTypes/TypeAssignability.h
    DCPS/XTypes/TypeDescriptorImpl.h
    DCPS/XTypes/TypeLookupService.h
    DCPS/XTypes/TypeObject.h
    DCPS/XTypes/TypeObjectC.h
    DCPS/XTypes/TypeObjectTypeSupportImpl.h
    DCPS/XTypes/Utils.h
    DCPS/Xcdr2ValueWriter.h
    DCPS/ZeroCopyAllocator_T.cpp
    DCPS/ZeroCopyAllocator_T.h
    DCPS/ZeroCopyAllocator_T.inl
    DCPS/ZeroCopyInfoSeq_T.h
    DCPS/ZeroCopySeqBase.h
    DCPS/ZeroCopySeq_T.cpp
    DCPS/ZeroCopySeq_T.h
    DCPS/ZeroCopySeq_T.inl
    DCPS/dcps_export.h
    DCPS/debug.h
    DCPS/optional.h
    DCPS/security/framework/HandleRegistry.h
    DCPS/security/framework/Properties.h
    DCPS/security/framework/SecurityConfig.h
    DCPS/security/framework/SecurityConfigPropertyList.h
    DCPS/security/framework/SecurityConfig_rch.h
    DCPS/security/framework/SecurityPluginInst.h
    DCPS/security/framework/SecurityPluginInst_rch.h
    DCPS/security/framework/SecurityRegistry.h
    DCPS/security/framework/Utility.h
    DCPS/transport/framework/BasicQueueVisitor_T.h
    DCPS/transport/framework/BasicQueue_T.h
    DCPS/transport/framework/BuildChainVisitor.h
    DCPS/transport/framework/BuildChainVisitor.inl
    DCPS/transport/framework/CopyChainVisitor.h
    DCPS/transport/framework/CopyChainVisitor.inl
    DCPS/transport/framework/DataLink.h
    DCPS/transport/framework/DataLink.inl
    DCPS/transport/framework/DataLinkCleanupTask.h
    DCPS/transport/framework/DataLinkSet.h
    DCPS/transport/framework/DataLinkSet.inl
    DCPS/transport/framework/DataLinkSet_rch.h
    DCPS/transport/framework/DataLink_rch.h
    DCPS/transport/framework/DirectPriorityMapper.h
    DCPS/transport/framework/DirectPriorityMapper.inl
    DCPS/transport/framework/EntryExit.h
    DCPS/transport/framework/MessageDropper.h
    DCPS/transport/framework/NullSynch.h
    DCPS/transport/framework/NullSynch.inl
    DCPS/transport/framework/NullSynchStrategy.h
    DCPS/transport/framework/PacketRemoveVisitor.h
    DCPS/transport/framework/PacketRemoveVisitor.inl
    DCPS/transport/framework/PerConnectionSynch.h
    DCPS/transport/framework/PerConnectionSynch.inl
    DCPS/transport/framework/PerConnectionSynchStrategy.h
    DCPS/transport/framework/PerConnectionSynchStrategy.inl
    DCPS/transport/framework/PoolSynch.h
    DCPS/transport/framework/PoolSynch.inl
    DCPS/transport/framework/PoolSynchStrategy.h
    DCPS/transport/framework/PoolSynchStrategy.inl
    DCPS/transport/framework/PriorityKey.h
    DCPS/transport/framework/PriorityKey.inl
    DCPS/transport/framework/PriorityMapper.h
    DCPS/transport/framework/PriorityMapper.inl
    DCPS/transport/framework/QueueRemoveVisitor.h
    DCPS/transport/framework/QueueRemoveVisitor.inl
    DCPS/transport/framework/QueueTaskBase_T.h
    DCPS/transport/framework/ReactorSynch.h
    DCPS/transport/framework/ReactorSynch.inl
    DCPS/transport/framework/ReactorSynchStrategy.h
    DCPS/transport/framework/ReactorSynchStrategy.inl
    DCPS/transport/framework/ReceiveListenerSet.h
    DCPS/transport/framework/ReceiveListenerSet.inl
    DCPS/transport/framework/ReceiveListenerSetMap.h
    DCPS/transport/framework/ReceiveListenerSetMap.inl
    DCPS/transport/framework/ReceiveListenerSet_rch.h
    DCPS/transport/framework/ReceivedDataSample.h
    DCPS/transport/framework/RemoveAllVisitor.h
    DCPS/transport/framework/RemoveAllVisitor.inl
    DCPS/transport/framework/ScheduleOutputHandler.h
    DCPS/transport/framework/ScheduleOutputHandler.inl
    DCPS/transport/framework/SendResponseListener.h
    DCPS/transport/framework/ThreadPerConRemoveVisitor.h
    DCPS/transport/framework/ThreadPerConRemoveVisitor.inl
    DCPS/transport/framework/ThreadPerConnectionSendTask.h
    DCPS/transport/framework/ThreadSynch.h
    DCPS/transport/framework/ThreadSynch.inl
    DCPS/transport/framework/ThreadSynchResource.h
    DCPS/transport/framework/ThreadSynchResource.inl
    DCPS/transport/framework/ThreadSynchStrategy.h
    DCPS/transport/framework/ThreadSynchStrategy.inl
    DCPS/transport/framework/ThreadSynchStrategy_rch.h
    DCPS/transport/framework/ThreadSynchWorker.h
    DCPS/transport/framework/ThreadSynchWorker.inl
    DCPS/transport/framework/TransportClient.h
    DCPS/transport/framework/TransportConfig.h
    DCPS/transport/framework/TransportConfig_rch.h
    DCPS/transport/framework/TransportControlElement.h
    DCPS/transport/framework/TransportControlElement.inl
    DCPS/transport/framework/TransportCustomizedElement.h
    DCPS/transport/framework/TransportCustomizedElement.inl
    DCPS/transport/framework/TransportDebug.h
    DCPS/transport/framework/TransportDefs.h
    DCPS/transport/framework/TransportExceptions.h
    DCPS/transport/framework/TransportHeader.h
    DCPS/transport/framework/TransportHeader.inl
    DCPS/transport/framework/TransportImpl.h
    DCPS/transport/framework/TransportImpl.inl
    DCPS/transport/framework/TransportImpl_rch.h
    DCPS/transport/framework/TransportInst.h
    DCPS/transport/framework/TransportInst_rch.h
    DCPS/transport/framework/TransportQueueElement.h
    DCPS/transport/framework/TransportQueueElement.inl
    DCPS/transport/framework/TransportReassembly.h
    DCPS/transport/framework/TransportReceiveListener.h
    DCPS/transport/framework/TransportReceiveStrategy_T.cpp
    DCPS/transport/framework/TransportReceiveStrategy_T.h
    DCPS/transport/framework/TransportReceiveStrategy_T.inl
    DCPS/transport/framework/TransportReceiveStrategy_rch.h
    DCPS/transport/framework/TransportRegistry.h
    DCPS/transport/framework/TransportRegistry.inl
    DCPS/transport/framework/TransportReplacedElement.h
    DCPS/transport/framework/TransportReplacedElement.inl
    DCPS/transport/framework/TransportRetainedElement.h
    DCPS/transport/framework/TransportRetainedElement.inl
    DCPS/transport/framework/TransportSendBuffer.h
    DCPS/transport/framework/TransportSendBuffer.inl
    DCPS/transport/framework/TransportSendControlElement.h
    DCPS/transport/framework/TransportSendControlElement.inl
    DCPS/transport/framework/TransportSendElement.h
    DCPS/transport/framework/TransportSendElement.inl
    DCPS/transport/framework/TransportSendListener.h
    DCPS/transport/framework/TransportSendStrategy.h
    DCPS/transport/framework/TransportSendStrategy.inl
    DCPS/transport/framework/TransportSendStrategy_rch.h
    DCPS/transport/framework/TransportStatistics.h
    DCPS/transport/framework/TransportStrategy.h
    DCPS/transport/framework/TransportStrategy_rch.h
    DCPS/transport/framework/TransportType.h
    DCPS/transport/framework/TransportType_rch.h
    DCPS/unique_ptr.h
    DCPS/yard/yard_base_grammar.hpp
    DCPS/yard/yard_char_set.hpp
    DCPS/yard/yard_parser.hpp
    DCPS/yard/yard_text_grammar.hpp
    DCPS/yard/yard_tree.hpp
    Version.h
    Versioned_Namespace.h
    OpenDDSConfigWrapper.h
    OpenDDSConfigWrapperC.h
    OpenDDSConfigWrapper.idl
)

qbs/qbs tests/auto/blackbox/testdata/cxx-modules/lib-mod/CMakeLists.txt :8

target_sources(library_module_lib PUBLIC
  FILE_SET all_my_modules TYPE CXX_MODULES
  BASE_DIRS
    ${PROJECT_SOURCE_DIR}
  FILES
    lib/hello.cppm
)

ImJimmi/JIVE examples/gain-plugin/CMakeLists.txt :16

target_sources(jive-gain-example
               PUBLIC source/CreatePluginFilter.cpp
                      source/Processor.h
                      source/View.h
)

mozilla-mobile/mozilla-vpn-client qtglean/ios.cmake :78

target_sources(iosglean PUBLIC
    ${GLEAN_VENDORED_PATH}/glean-core/ios/Glean/Glean.h
)

aumuell/open-inventor lib/CMakeLists.txt :38

target_sources(Inventor
    PRIVATE
    ${PP_SOURCES}
    database/src/sb/projectors/SbProjectors.c++
    database/src/sb/Sb.c++
    database/src/so/actions/SoActions.c++
    database/src/so/bundles/SoBundles.c++
    database/src/so/caches/SoCaches.c++
    database/src/so/details/SoDetails.c++
    database/src/so/elements/SoElement.c++
    database/src/so/elements/SoElements.c++
    database/src/so/engines/SoEngines.c++
    database/src/so/engines/SoConcatenate.c++
    database/src/so/engines/SoEngineInit.c++
    database/src/so/engines/SoFieldConverters.c++
    database/src/so/engines/SoGate.c++
    database/src/so/engines/SoSelectOne.c++
    database/src/so/errors/SoErrors.c++
    database/src/so/errors/SoErrorInit.c++
    database/src/so/events/SoEventInit.c++
    database/src/so/events/SoEvents.c++
    database/src/so/fields/SoField.c++
    database/src/so/fields/SoFieldContainer.c++
    database/src/so/fields/SoFieldData.c++
    database/src/so/fields/SoFieldInit.c++
    database/src/so/fields/SoFields.c++
    database/src/so/fields/SoGlobalField.c++
    database/src/so/nodes/nurbs/clients/nurbsClient.c++
    database/src/so/nodes/nurbs/libnurbs/libNurbs.c++
    database/src/so/nodes/nurbs/SoNurbs.c++
    database/src/so/nodes/SoNode.c++
    database/src/so/nodes/SoNodeInit.c++
    database/src/so/nodes/SoAnnotation.c++
    database/src/so/nodes/SoArray.c++
    database/src/so/nodes/SoAsciiText.c++
    database/src/so/nodes/SoBaseColor.c++
    database/src/so/nodes/SoBlinker.c++
    database/src/so/nodes/SoCallback.c++
    database/src/so/nodes/SoCamera.c++
    database/src/so/nodes/SoClipPlane.c++
    database/src/so/nodes/SoColorIndex.c++
    database/src/so/nodes/SoComplexity.c++
    database/src/so/nodes/SoCoordinate3.c++
    database/src/so/nodes/SoCoordinate4.c++
    database/src/so/nodes/SoDrawStyle.c++
    database/src/so/nodes/SoDirectionalLight.c++
    database/src/so/nodes/SoEnvironment.c++
    database/src/so/nodes/SoFile.c++
    database/src/so/nodes/SoFont.c++
    database/src/so/nodes/SoGroup.c++
    database/src/so/nodes/SoEventCallback.c++
    database/src/so/nodes/SoFontStyle.c++
    database/src/so/nodes/SoInfo.c++
    database/src/so/nodes/SoIndexedNurbsCurve.c++
    database/src/so/nodes/SoIndexedShape.c++
    database/src/so/nodes/SoLOD.c++
    database/src/so/nodes/SoLabel.c++
    database/src/so/nodes/SoLight.c++
    database/src/so/nodes/SoIndexedNurbsSurface.c++
    database/src/so/nodes/SoLevelOfDetail.c++
    database/src/so/nodes/SoMaterial.c++
    database/src/so/nodes/SoLocateHighlight.c++
    database/src/so/nodes/SoLightModel.c++
    database/src/so/nodes/SoLinearProfile.c++
    database/src/so/nodes/SoNormal.c++
    database/src/so/nodes/SoMaterialBinding.c++
    database/src/so/nodes/SoMultipleCopy.c++
    database/src/so/nodes/SoNurbsCurve.c++
    database/src/so/nodes/SoNurbsProfile.c++
    database/src/so/nodes/SoMatrixTransform.c++
    database/src/so/nodes/SoNurbsSurface.c++
    database/src/so/nodes/SoPackedColor.c++
    database/src/so/nodes/SoPendulum.c++
    database/src/so/nodes/SoNonIndexedShape.c++
    database/src/so/nodes/SoPathSwitch.c++
    database/src/so/nodes/SoProfile.c++
    database/src/so/nodes/SoNormalBinding.c++
    database/src/so/nodes/SoRotation.c++
    database/src/so/nodes/SoPickStyle.c++
    database/src/so/nodes/SoRotor.c++
    database/src/so/nodes/SoPointLight.c++
    database/src/so/nodes/SoScale.c++
    database/src/so/nodes/SoShape.c++
    database/src/so/nodes/SoShuttle.c++
    database/src/so/nodes/SoOrthographicCamera.c++
    database/src/so/nodes/SoRotationXYZ.c++
    database/src/so/nodes/SoSwitch.c++
    database/src/so/nodes/SoText2.c++
    database/src/so/nodes/SoPerspectiveCamera.c++
    database/src/so/nodes/SoProfileCoordinate2.c++
    database/src/so/nodes/SoProfileCoordinate3.c++
    database/src/so/nodes/SoResetTransform.c++
    database/src/so/nodes/SoSeparator.c++
    database/src/so/nodes/SoShapeHints.c++
    database/src/so/nodes/SoText3.c++
    database/src/so/nodes/SoSpotLight.c++
    database/src/so/nodes/SoTexture2.c++
    database/src/so/nodes/SoTextureCoordinate2.c++
    database/src/so/nodes/SoTransform.c++
    database/src/so/nodes/SoTextureCoordinateBinding.c++
    database/src/so/nodes/SoUnits.c++
    database/src/so/nodes/SoTransformation.c++
    database/src/so/nodes/readGIF.c
    database/src/so/nodes/SoTranslation.c++
    database/src/so/nodes/SoUnknownNode.c++
    database/src/so/nodes/SoVertexShape.c++
    database/src/so/nodes/SoWWWAnchor.c++
    database/src/so/nodes/SoTextureCoordinateDefault.c++
    database/src/so/nodes/SoVertexProperty.c++
    database/src/so/nodes/SoTextureCoordinateFunction.c++
    database/src/so/nodes/SoTextureCoordinateEnvironment.c++
    database/src/so/nodes/SoTextureCoordinatePlane.c++
    database/src/so/nodes/SoTexture2Transform.c++
    database/src/so/nodes/SoTransformSeparator.c++
    database/src/so/nodes/SoWWWInline.c++
    database/src/so/sensors/SoSensors.c++
    database/src/so/upgraders/SoUpgraderInit.c++
    database/src/so/upgraders/SoUpgrader.c++
    database/src/so/upgraders/SoUpgraders.c++
    database/src/so/So.c++
    database/src/so/SoState.c++
    database/src/so/linux.c++

    database/src/so/engines/SoCalcExpr.h
    database/src/so/engines/SoEngineUtil.h
    database/src/so/engines/SoFieldConverters.h
    database/src/so/fields/SoGlobalField.h
    database/src/so/nodes/nurbs/SoCurveRenderEval.h
    database/src/so/nodes/nurbs/SoPickEvals.h
    database/src/so/nodes/nurbs/SoPrimEvals.h
    database/src/so/nodes/nurbs/_defines.h
    database/src/so/nodes/nurbs/_undefs.h
    database/src/so/nodes/nurbs/clients/gl4curveval.h
    database/src/so/nodes/nurbs/clients/gl4surfeval.h
    database/src/so/nodes/nurbs/clients/gl4types.h
    database/src/so/nodes/nurbs/clients/isocurveeval.h
    database/src/so/nodes/nurbs/clients/softcurvemaps.h
    database/src/so/nodes/nurbs/clients/softcurveval.h
    database/src/so/nodes/nurbs/clients/softcurvmap.h
    database/src/so/nodes/nurbs/clients/softrenderer.h
    database/src/so/nodes/nurbs/clients/softsurfacemaps.h
    database/src/so/nodes/nurbs/clients/softsurfeval.h
    database/src/so/nodes/nurbs/clients/softsurfmap.h
    database/src/so/nodes/nurbs/clients/typestringtable.h
    database/src/so/nodes/nurbs/clients/gl4base.h
    database/src/so/nodes/nurbs/head/arc.h
    database/src/so/nodes/nurbs/head/arcsorter.h
    database/src/so/nodes/nurbs/head/arctess.h
    database/src/so/nodes/nurbs/head/backend.h
    database/src/so/nodes/nurbs/head/basiccrveval.h
    database/src/so/nodes/nurbs/head/basicsurfeval.h
    database/src/so/nodes/nurbs/head/bezierarc.h
    database/src/so/nodes/nurbs/head/bin.h
    database/src/so/nodes/nurbs/head/bufpool.h
    database/src/so/nodes/nurbs/head/cachingeval.h
    database/src/so/nodes/nurbs/head/coveandtiler.h
    database/src/so/nodes/nurbs/head/curve.h
    database/src/so/nodes/nurbs/head/curvelist.h
    database/src/so/nodes/nurbs/head/defines.h
    database/src/so/nodes/nurbs/head/displaylist.h
    database/src/so/nodes/nurbs/head/displaymode.h
    database/src/so/nodes/nurbs/head/flist.h
    database/src/so/nodes/nurbs/head/flistsorter.h
    database/src/so/nodes/nurbs/head/gridline.h
    database/src/so/nodes/nurbs/head/gridtrimvertex.h
    database/src/so/nodes/nurbs/head/gridvertex.h
    database/src/so/nodes/nurbs/head/hull.h
    database/src/so/nodes/nurbs/head/jarcloc.h
    database/src/so/nodes/nurbs/head/jumpbuffer.h
    database/src/so/nodes/nurbs/head/knot.h
    database/src/so/nodes/nurbs/head/knotvector.h
    database/src/so/nodes/nurbs/head/mapdesc.h
    database/src/so/nodes/nurbs/head/maplist.h
    database/src/so/nodes/nurbs/head/mesher.h
    database/src/so/nodes/nurbs/head/myassert.h
    database/src/so/nodes/nurbs/head/myglimports.h
    database/src/so/nodes/nurbs/head/mysetjmp.h
    database/src/so/nodes/nurbs/head/mystdlib.h
    database/src/so/nodes/nurbs/head/mystring.h
    database/src/so/nodes/nurbs/head/nurbsconsts.h
    database/src/so/nodes/nurbs/head/nurbstess.h
    database/src/so/nodes/nurbs/head/patch.h
    database/src/so/nodes/nurbs/head/patchlist.h
    database/src/so/nodes/nurbs/head/pwlarc.h
    database/src/so/nodes/nurbs/head/quilt.h
    database/src/so/nodes/nurbs/head/reader.h
    database/src/so/nodes/nurbs/head/renderhints.h
    database/src/so/nodes/nurbs/head/slicer.h
    database/src/so/nodes/nurbs/head/sorter.h
    database/src/so/nodes/nurbs/head/subdivider.h
    database/src/so/nodes/nurbs/head/trimline.h
    database/src/so/nodes/nurbs/head/trimregion.h
    database/src/so/nodes/nurbs/head/trimvertex.h
    database/src/so/nodes/nurbs/head/trimvertpool.h
    database/src/so/nodes/nurbs/head/types.h
    database/src/so/nodes/nurbs/head/uarray.h
    database/src/so/nodes/nurbs/head/varray.h
    database/src/so/nodes/nurbs/head/glimports.h
    database/src/so/nodes/nurbs/head/mymath.h
    database/src/so/nodes/nurbs/head/mystdio.h
    database/src/so/nodes/nurbs/head/simplemath.h
    database/src/so/nodes/nurbs/SoAddPrefix.h
    database/src/so/nodes/nurbs/SoCurveMaps.h
    database/src/so/nodes/nurbs/SoCurveRender.h
    database/src/so/nodes/nurbs/SoGLRender.h
    database/src/so/nodes/nurbs/SoPickMaps.h
    database/src/so/nodes/nurbs/SoPickRender.h
    database/src/so/nodes/nurbs/SoPrimMaps.h
    database/src/so/nodes/nurbs/SoPrimRender.h
    database/src/so/nodes/readGIF.h
    database/src/so/upgraders/SoUpgraders.h
    database/src/so/upgraders/SoV1DrawStyle.h
    database/src/so/upgraders/SoV1Environment.h
    database/src/so/upgraders/SoV1IndexedTriangleMesh.h
    database/src/so/upgraders/SoV1LayerGroup.h
    database/src/so/upgraders/SoV1LightModel.h
    database/src/so/upgraders/SoV1Material.h
    database/src/so/upgraders/SoV1PackedColor.h
    database/src/so/upgraders/SoV1PickStyle.h
    database/src/so/upgraders/SoV1Separator.h
    database/src/so/upgraders/SoV1ShapeHints.h
    database/src/so/upgraders/SoV1Text2.h
    database/src/so/upgraders/SoV1Text3.h
    database/src/so/upgraders/SoV1Texture2.h
    database/src/so/upgraders/SoV1TextureCoordinateCube.h
    database/src/so/upgraders/SoV1TextureCoordinateCylinder.h
    database/src/so/upgraders/SoV1TextureCoordinateEnvironment.h
    database/src/so/upgraders/SoV1TextureCoordinatePlane.h
    database/src/so/upgraders/SoV1TextureCoordinateSphere.h
    database/src/so/upgraders/SoV2AsciiText.h
    database/src/so/upgraders/SoV2FontStyle.h
    database/src/so/upgraders/SoV2LOD.h
    database/src/so/upgraders/SoV2MaterialIndex.h
    database/src/so/upgraders/SoV2Text2.h
    database/src/so/upgraders/SoV2Text3.h
    database/src/so/upgraders/SoV2VertexProperty.h
    database/src/so/upgraders/SoV2WWWAnchor.h
    database/src/so/upgraders/SoV2WWWInline.h

    PUBLIC
    database/include/Inventor/Sb.h
    database/include/Inventor/SbBox.h
    database/include/Inventor/SbColor.h
    database/include/Inventor/SbDict.h
    database/include/Inventor/SbString.h
    database/include/Inventor/SbViewportRegion.h
    database/include/Inventor/So.h
    database/include/Inventor/SoDB.h
    database/include/Inventor/SoInput.h
    database/include/Inventor/SoLists.h
    database/include/Inventor/SoOutput.h
    database/include/Inventor/SoPath.h
    database/include/Inventor/SoPickedPoint.h
    database/include/Inventor/SoPrimitiveVertex.h
    database/include/Inventor/SoType.h
    database/include/Inventor/actions/SoAction.h
    database/include/Inventor/actions/SoActions.h
    database/include/Inventor/actions/SoCallbackAction.h
    database/include/Inventor/actions/SoGLRenderAction.h
    database/include/Inventor/actions/SoGetBoundingBoxAction.h
    database/include/Inventor/actions/SoGetMatrixAction.h
    database/include/Inventor/actions/SoHandleEventAction.h
    database/include/Inventor/actions/SoPickAction.h
    database/include/Inventor/actions/SoRayPickAction.h
    database/include/Inventor/actions/SoSearchAction.h
    database/include/Inventor/actions/SoSubAction.h
    database/include/Inventor/actions/SoWriteAction.h
    database/include/Inventor/bundles/SoBundle.h
    database/include/Inventor/bundles/SoMaterialBundle.h
    database/include/Inventor/bundles/SoNormalBundle.h
    database/include/Inventor/bundles/SoTextureCoordinateBundle.h
    database/include/Inventor/caches/SoBoundingBoxCache.h
    database/include/Inventor/caches/SoCache.h
    database/include/Inventor/caches/SoGLCacheList.h
    database/include/Inventor/caches/SoGLRenderCache.h
    database/include/Inventor/caches/SoNormalCache.h
    database/include/Inventor/details/SoConeDetail.h
    database/include/Inventor/details/SoCubeDetail.h
    database/include/Inventor/details/SoCylinderDetail.h
    database/include/Inventor/details/SoDetail.h
    database/include/Inventor/details/SoDetails.h
    database/include/Inventor/details/SoFaceDetail.h
    database/include/Inventor/details/SoLineDetail.h
    database/include/Inventor/details/SoPointDetail.h
    database/include/Inventor/details/SoSubDetail.h
    database/include/Inventor/details/SoTextDetail.h
    database/include/Inventor/elements/SoAccumulatedElement.h
    database/include/Inventor/elements/SoAmbientColorElement.h
    database/include/Inventor/elements/SoBBoxModelMatrixElement.h
    database/include/Inventor/elements/SoCacheElement.h
    database/include/Inventor/elements/SoClipPlaneElement.h
    database/include/Inventor/elements/SoComplexityElement.h
    database/include/Inventor/elements/SoComplexityTypeElement.h
    database/include/Inventor/elements/SoCoordinateElement.h
    database/include/Inventor/elements/SoCreaseAngleElement.h
    database/include/Inventor/elements/SoCullVolumeElement.h
    database/include/Inventor/elements/SoCurrentGLMaterialElement.h
    database/include/Inventor/elements/SoDiffuseColorElement.h
    database/include/Inventor/elements/SoDrawStyleElement.h
    database/include/Inventor/elements/SoElement.h
    database/include/Inventor/elements/SoElements.h
    database/include/Inventor/elements/SoEmissiveColorElement.h
    database/include/Inventor/elements/SoFloatElement.h
    database/include/Inventor/elements/SoFocalDistanceElement.h
    database/include/Inventor/elements/SoFontNameElement.h
    database/include/Inventor/elements/SoFontSizeElement.h
    database/include/Inventor/elements/SoGLAmbientColorElement.h
    database/include/Inventor/elements/SoGLCacheContextElement.h
    database/include/Inventor/elements/SoGLClipPlaneElement.h
    database/include/Inventor/elements/SoGLColorIndexElement.h
    database/include/Inventor/elements/SoGLCoordinateElement.h
    database/include/Inventor/elements/SoGLDiffuseColorElement.h
    database/include/Inventor/elements/SoGLDrawStyleElement.h
    database/include/Inventor/elements/SoGLEmissiveColorElement.h
    database/include/Inventor/elements/SoGLLazyElement.h
    database/include/Inventor/elements/SoGLLightIdElement.h
    database/include/Inventor/elements/SoGLLightModelElement.h
    database/include/Inventor/elements/SoGLLinePatternElement.h
    database/include/Inventor/elements/SoGLLineWidthElement.h
    #database/include/Inventor/elements/SoGLMaterialIndexElement.h
    database/include/Inventor/elements/SoGLModelMatrixElement.h
    database/include/Inventor/elements/SoGLNormalElement.h
    database/include/Inventor/elements/SoGLPointSizeElement.h
    database/include/Inventor/elements/SoGLPolygonStippleElement.h
    database/include/Inventor/elements/SoGLProjectionMatrixElement.h
    database/include/Inventor/elements/SoGLRenderPassElement.h
    database/include/Inventor/elements/SoGLShapeHintsElement.h
    database/include/Inventor/elements/SoGLShininessElement.h
    database/include/Inventor/elements/SoGLSpecularColorElement.h
    database/include/Inventor/elements/SoGLTextureBlendColorElement.h
    database/include/Inventor/elements/SoGLTextureCoordinateElement.h
    database/include/Inventor/elements/SoGLTextureEnabledElement.h
    database/include/Inventor/elements/SoGLTextureImageElement.h
    database/include/Inventor/elements/SoGLTextureMatrixElement.h
    database/include/Inventor/elements/SoGLTextureModelElement.h
    database/include/Inventor/elements/SoGLTextureQualityElement.h
    database/include/Inventor/elements/SoGLTextureWrapSElement.h
    database/include/Inventor/elements/SoGLTextureWrapTElement.h
    database/include/Inventor/elements/SoGLUpdateAreaElement.h
    database/include/Inventor/elements/SoGLViewingMatrixElement.h
    database/include/Inventor/elements/SoGLViewportRegionElement.h
    database/include/Inventor/elements/SoInt32Element.h
    database/include/Inventor/elements/SoLightAttenuationElement.h
    database/include/Inventor/elements/SoLightModelElement.h
    database/include/Inventor/elements/SoLinePatternElement.h
    database/include/Inventor/elements/SoLineWidthElement.h
    database/include/Inventor/elements/SoLocalBBoxMatrixElement.h
    database/include/Inventor/elements/SoLongElement.h
    database/include/Inventor/elements/SoMaterialBindingElement.h
    database/include/Inventor/elements/SoModelMatrixElement.h
    database/include/Inventor/elements/SoNormalBindingElement.h
    database/include/Inventor/elements/SoNormalElement.h
    database/include/Inventor/elements/SoOverrideElement.h
    database/include/Inventor/elements/SoPickRayElement.h
    database/include/Inventor/elements/SoPickStyleElement.h
    database/include/Inventor/elements/SoPointSizeElement.h
    database/include/Inventor/elements/SoProfileCoordinateElement.h
    database/include/Inventor/elements/SoProfileElement.h
    database/include/Inventor/elements/SoProjectionMatrixElement.h
    database/include/Inventor/elements/SoReplacedElement.h
    database/include/Inventor/elements/SoShapeHintsElement.h
    database/include/Inventor/elements/SoShapeStyleElement.h
    database/include/Inventor/elements/SoShininessElement.h
    database/include/Inventor/elements/SoSpecularColorElement.h
    database/include/Inventor/elements/SoSubElement.h
    database/include/Inventor/elements/SoSwitchElement.h
    database/include/Inventor/elements/SoTextureBlendColorElement.h
    database/include/Inventor/elements/SoTextureCoordinateBindingElement.h
    database/include/Inventor/elements/SoTextureCoordinateElement.h
    database/include/Inventor/elements/SoTextureImageElement.h
    database/include/Inventor/elements/SoTextureMatrixElement.h
    database/include/Inventor/elements/SoTextureModelElement.h
    database/include/Inventor/elements/SoTextureQualityElement.h
    database/include/Inventor/elements/SoTextureWrapSElement.h
    database/include/Inventor/elements/SoTextureWrapTElement.h
    database/include/Inventor/elements/SoTransparencyElement.h
    database/include/Inventor/elements/SoUnitsElement.h
    database/include/Inventor/elements/SoViewVolumeElement.h
    database/include/Inventor/elements/SoViewingMatrixElement.h
    database/include/Inventor/elements/SoViewportRegionElement.h
    database/include/Inventor/elements/SoWindowElement.h
    database/include/Inventor/elements/SoLazyElement.h
    database/include/Inventor/engines/SoBoolOperation.h
    database/include/Inventor/engines/SoCalculator.h
    database/include/Inventor/engines/SoCompose.h
    database/include/Inventor/engines/SoComputeBoundingBox.h
    database/include/Inventor/engines/SoConcatenate.h
    database/include/Inventor/engines/SoCounter.h
    database/include/Inventor/engines/SoElapsedTime.h
    database/include/Inventor/engines/SoEngines.h
    database/include/Inventor/engines/SoFieldConverter.h
    database/include/Inventor/engines/SoGate.h
    database/include/Inventor/engines/SoInterpolate.h
    database/include/Inventor/engines/SoOnOff.h
    database/include/Inventor/engines/SoOneShot.h
    database/include/Inventor/engines/SoSelectOne.h
    database/include/Inventor/engines/SoSubEngine.h
    database/include/Inventor/engines/SoTimeCounter.h
    database/include/Inventor/engines/SoTransformVec3f.h
    database/include/Inventor/engines/SoTriggerAny.h
    database/include/Inventor/engines/SoEngine.h
    database/include/Inventor/engines/SoOutputData.h
    database/include/Inventor/errors/SoDebugError.h
    database/include/Inventor/errors/SoError.h
    database/include/Inventor/errors/SoErrors.h
    database/include/Inventor/errors/SoMemoryError.h
    database/include/Inventor/errors/SoReadError.h
    database/include/Inventor/events/SoButtonEvent.h
    database/include/Inventor/events/SoEvent.h
    database/include/Inventor/events/SoEvents.h
    database/include/Inventor/events/SoKeyboardEvent.h
    database/include/Inventor/events/SoLocation2Event.h
    database/include/Inventor/events/SoMotion3Event.h
    database/include/Inventor/events/SoMouseButtonEvent.h
    database/include/Inventor/events/SoSpaceballButtonEvent.h
    database/include/Inventor/events/SoSubEvent.h
    database/include/Inventor/fields/SoField.h
    database/include/Inventor/fields/SoFieldContainer.h
    database/include/Inventor/fields/SoFields.h
    database/include/Inventor/fields/SoMFBitMask.h
    database/include/Inventor/fields/SoMFBool.h
    database/include/Inventor/fields/SoMFColor.h
    database/include/Inventor/fields/SoMFEngine.h
    database/include/Inventor/fields/SoMFEnum.h
    database/include/Inventor/fields/SoMFFloat.h
    database/include/Inventor/fields/SoMFInt32.h
    database/include/Inventor/fields/SoMFLong.h
    database/include/Inventor/fields/SoMFMatrix.h
    database/include/Inventor/fields/SoMFName.h
    database/include/Inventor/fields/SoMFNode.h
    database/include/Inventor/fields/SoMFPath.h
    database/include/Inventor/fields/SoMFPlane.h
    database/include/Inventor/fields/SoMFRotation.h
    database/include/Inventor/fields/SoMFShort.h
    database/include/Inventor/fields/SoMFString.h
    database/include/Inventor/fields/SoMFTime.h
    database/include/Inventor/fields/SoMFUInt32.h
    database/include/Inventor/fields/SoMFULong.h
    database/include/Inventor/fields/SoMFUShort.h
    database/include/Inventor/fields/SoMFVec2f.h
    database/include/Inventor/fields/SoMFVec3f.h
    database/include/Inventor/fields/SoMFVec4f.h
    database/include/Inventor/fields/SoSFBitMask.h
    database/include/Inventor/fields/SoSFBool.h
    database/include/Inventor/fields/SoSFColor.h
    database/include/Inventor/fields/SoSFEngine.h
    database/include/Inventor/fields/SoSFEnum.h
    database/include/Inventor/fields/SoSFFloat.h
    database/include/Inventor/fields/SoSFImage.h
    database/include/Inventor/fields/SoSFInt32.h
    database/include/Inventor/fields/SoSFLong.h
    database/include/Inventor/fields/SoSFMatrix.h
    database/include/Inventor/fields/SoSFName.h
    database/include/Inventor/fields/SoSFNode.h
    database/include/Inventor/fields/SoSFPath.h
    database/include/Inventor/fields/SoSFPlane.h
    database/include/Inventor/fields/SoSFRotation.h
    database/include/Inventor/fields/SoSFShort.h
    database/include/Inventor/fields/SoSFString.h
    database/include/Inventor/fields/SoSFTime.h
    database/include/Inventor/fields/SoSFTrigger.h
    database/include/Inventor/fields/SoSFUInt32.h
    database/include/Inventor/fields/SoSFULong.h
    database/include/Inventor/fields/SoSFUShort.h
    database/include/Inventor/fields/SoSFVec2f.h
    database/include/Inventor/fields/SoSFVec3f.h
    database/include/Inventor/fields/SoSFVec4f.h
    database/include/Inventor/fields/SoSubField.h
    database/include/Inventor/fields/SoFieldData.h
    database/include/Inventor/misc/SoAuditorList.h
    database/include/Inventor/misc/SoBase.h
    database/include/Inventor/misc/SoBasic.h
    database/include/Inventor/misc/SoByteStream.h
    database/include/Inventor/misc/SoCallbackList.h
    database/include/Inventor/misc/SoChildList.h
    database/include/Inventor/misc/SoCompactPathList.h
    database/include/Inventor/misc/SoNormalGenerator.h
    database/include/Inventor/misc/SoNotification.h
    database/include/Inventor/misc/SoState.h
    database/include/Inventor/misc/SoTempPath.h
    database/include/Inventor/misc/SoTranscribe.h
    database/include/Inventor/misc/upgraders/SoUpgrader.h
    database/include/Inventor/misc/upgraders/SoV1CustomNode.h
    database/include/Inventor/nodes/SoAnnotation.h
    database/include/Inventor/nodes/SoArray.h
    database/include/Inventor/nodes/SoAsciiText.h
    database/include/Inventor/nodes/SoBaseColor.h
    database/include/Inventor/nodes/SoBlinker.h
    database/include/Inventor/nodes/SoCallback.h
    database/include/Inventor/nodes/SoCamera.h
    database/include/Inventor/nodes/SoClipPlane.h
    database/include/Inventor/nodes/SoColorIndex.h
    database/include/Inventor/nodes/SoComplexity.h
    database/include/Inventor/nodes/SoCone.h
    database/include/Inventor/nodes/SoCoordinate3.h
    database/include/Inventor/nodes/SoCoordinate4.h
    database/include/Inventor/nodes/SoCube.h
    database/include/Inventor/nodes/SoCylinder.h
    database/include/Inventor/nodes/SoDirectionalLight.h
    database/include/Inventor/nodes/SoDrawStyle.h
    database/include/Inventor/nodes/SoEnvironment.h
    database/include/Inventor/nodes/SoEventCallback.h
    database/include/Inventor/nodes/SoFaceSet.h
    database/include/Inventor/nodes/SoFile.h
    database/include/Inventor/nodes/SoFont.h
    database/include/Inventor/nodes/SoGroup.h
    database/include/Inventor/nodes/SoIndexedFaceSet.h
    database/include/Inventor/nodes/SoIndexedLineSet.h
    database/include/Inventor/nodes/SoIndexedNurbsCurve.h
    database/include/Inventor/nodes/SoIndexedNurbsSurface.h
    database/include/Inventor/nodes/SoIndexedShape.h
    database/include/Inventor/nodes/SoIndexedTriangleStripSet.h
    database/include/Inventor/nodes/SoInfo.h
    database/include/Inventor/nodes/SoLOD.h
    database/include/Inventor/nodes/SoLabel.h
    database/include/Inventor/nodes/SoLevelOfDetail.h
    database/include/Inventor/nodes/SoLight.h
    database/include/Inventor/nodes/SoLightModel.h
    database/include/Inventor/nodes/SoLineSet.h
    database/include/Inventor/nodes/SoLinearProfile.h
    database/include/Inventor/nodes/SoLocateHighlight.h
    database/include/Inventor/nodes/SoMaterial.h
    database/include/Inventor/nodes/SoMaterialBinding.h
    #database/include/Inventor/nodes/SoMaterialIndex.h
    database/include/Inventor/nodes/SoMatrixTransform.h
    database/include/Inventor/nodes/SoMultipleCopy.h
    database/include/Inventor/nodes/SoNode.h
    database/include/Inventor/nodes/SoNodes.h
    database/include/Inventor/nodes/SoNonIndexedShape.h
    database/include/Inventor/nodes/SoNormal.h
    database/include/Inventor/nodes/SoNormalBinding.h
    database/include/Inventor/nodes/SoNurbsCurve.h
    database/include/Inventor/nodes/SoNurbsProfile.h
    database/include/Inventor/nodes/SoNurbsSurface.h
    database/include/Inventor/nodes/SoOrthographicCamera.h
    database/include/Inventor/nodes/SoPackedColor.h
    database/include/Inventor/nodes/SoPathSwitch.h
    database/include/Inventor/nodes/SoPendulum.h
    database/include/Inventor/nodes/SoPerspectiveCamera.h
    database/include/Inventor/nodes/SoPickStyle.h
    database/include/Inventor/nodes/SoPointLight.h
    database/include/Inventor/nodes/SoPointSet.h
    database/include/Inventor/nodes/SoProfile.h
    database/include/Inventor/nodes/SoProfileCoordinate2.h
    database/include/Inventor/nodes/SoProfileCoordinate3.h
    database/include/Inventor/nodes/SoQuadMesh.h
    database/include/Inventor/nodes/SoResetTransform.h
    database/include/Inventor/nodes/SoRotation.h
    database/include/Inventor/nodes/SoRotationXYZ.h
    database/include/Inventor/nodes/SoRotor.h
    database/include/Inventor/nodes/SoScale.h
    database/include/Inventor/nodes/SoSeparator.h
    database/include/Inventor/nodes/SoShape.h
    database/include/Inventor/nodes/SoShapeHints.h
    database/include/Inventor/nodes/SoShuttle.h
    database/include/Inventor/nodes/SoSphere.h
    database/include/Inventor/nodes/SoSpotLight.h
    database/include/Inventor/nodes/SoSubNode.h
    database/include/Inventor/nodes/SoSwitch.h
    database/include/Inventor/nodes/SoText2.h
    database/include/Inventor/nodes/SoText3.h
    database/include/Inventor/nodes/SoTexture2.h
    database/include/Inventor/nodes/SoTexture2Transform.h
    database/include/Inventor/nodes/SoTextureCoordinate2.h
    database/include/Inventor/nodes/SoTextureCoordinateBinding.h
    database/include/Inventor/nodes/SoTextureCoordinateDefault.h
    database/include/Inventor/nodes/SoTextureCoordinateEnvironment.h
    database/include/Inventor/nodes/SoTextureCoordinateFunction.h
    database/include/Inventor/nodes/SoTextureCoordinatePlane.h
    database/include/Inventor/nodes/SoTransform.h
    database/include/Inventor/nodes/SoTransformSeparator.h
    database/include/Inventor/nodes/SoTransformation.h
    database/include/Inventor/nodes/SoTranslation.h
    database/include/Inventor/nodes/SoTriangleStripSet.h
    database/include/Inventor/nodes/SoUnits.h
    #database/include/Inventor/nodes/SoVertexArray.h
    database/include/Inventor/nodes/SoVertexProperty.h
    database/include/Inventor/nodes/SoVertexShape.h
    database/include/Inventor/nodes/SoWWWAnchor.h
    database/include/Inventor/nodes/SoWWWInline.h
    #database/include/Inventor/nodes/glVertArray.h
    database/include/Inventor/nodes/SoFontStyle.h
    database/include/Inventor/projectors/SbCylinderPlaneProjector.h
    database/include/Inventor/projectors/SbCylinderProjector.h
    database/include/Inventor/projectors/SbCylinderSectionProjector.h
    database/include/Inventor/projectors/SbCylinderSheetProjector.h
    database/include/Inventor/projectors/SbLineProjector.h
    database/include/Inventor/projectors/SbPlaneProjector.h
    database/include/Inventor/projectors/SbProjectors.h
    database/include/Inventor/projectors/SbSpherePlaneProjector.h
    database/include/Inventor/projectors/SbSphereProjector.h
    database/include/Inventor/projectors/SbSphereSectionProjector.h
    database/include/Inventor/projectors/SbSphereSheetProjector.h
    database/include/Inventor/projectors/SbProjector.h
    database/include/Inventor/sensors/SoAlarmSensor.h
    database/include/Inventor/sensors/SoDataSensor.h
    database/include/Inventor/sensors/SoDelayQueueSensor.h
    database/include/Inventor/sensors/SoFieldSensor.h
    database/include/Inventor/sensors/SoIdleSensor.h
    database/include/Inventor/sensors/SoNodeSensor.h
    database/include/Inventor/sensors/SoOneShotSensor.h
    database/include/Inventor/sensors/SoPathSensor.h
    database/include/Inventor/sensors/SoSensor.h
    database/include/Inventor/sensors/SoSensorManager.h
    database/include/Inventor/sensors/SoSensors.h
    database/include/Inventor/sensors/SoTimerQueueSensor.h
    database/include/Inventor/sensors/SoTimerSensor.h
    database/include/Inventor/SbBasic.h
    database/include/Inventor/SbLinear.h
    database/include/Inventor/SbPList.h
    database/include/Inventor/SbTime.h
    database/include/Inventor/SoOffscreenRenderer.h
    database/include/SoDebug.h
    database/include/SoUnknownEngine.h
    database/include/SoUnknownNode.h
    database/include/machine.h
)

mcallegari/qlcplus plugins/dmxusb/src/CMakeLists.txt :131

target_sources(${module_name} PUBLIC
        euroliteusbdmxpro.cpp euroliteusbdmxpro.h
        nanodmx.cpp nanodmx.h
    )

Aitum/obs-vertical-canvas cmake/common/helpers_common.cmake :43

target_sources(plugin-support PRIVATE plugin-support.c PUBLIC src/plugin-support.h)

Governikus/AusweisApp src/CMakeLists.txt :164

target_sources(AusweisAppBinary PUBLIC ${PUBLIC_HEADER})

Jackarain/proxy third_party/boost/libs/any/CMakeLists.txt :10

target_sources(boost_any PUBLIC
        FILE_SET modules_public TYPE CXX_MODULES FILES
            ${CMAKE_CURRENT_LIST_DIR}/modules/boost_any.cppm
    )

flomesh-io/pipy deps/leveldb-1.23/CMakeLists.txt :122

target_sources(leveldb
  PRIVATE
    "${PROJECT_BINARY_DIR}/${LEVELDB_PORT_CONFIG_DIR}/port_config.h"
    "db/builder.cc"
    "db/builder.h"
    "db/c.cc"
    "db/db_impl.cc"
    "db/db_impl.h"
    "db/db_iter.cc"
    "db/db_iter.h"
    "db/dbformat.cc"
    "db/dbformat.h"
    "db/dumpfile.cc"
    "db/filename.cc"
    "db/filename.h"
    "db/log_format.h"
    "db/log_reader.cc"
    "db/log_reader.h"
    "db/log_writer.cc"
    "db/log_writer.h"
    "db/memtable.cc"
    "db/memtable.h"
    "db/repair.cc"
    "db/skiplist.h"
    "db/snapshot.h"
    "db/table_cache.cc"
    "db/table_cache.h"
    "db/version_edit.cc"
    "db/version_edit.h"
    "db/version_set.cc"
    "db/version_set.h"
    "db/write_batch_internal.h"
    "db/write_batch.cc"
    "port/port_stdcxx.h"
    "port/port.h"
    "port/thread_annotations.h"
    "table/block_builder.cc"
    "table/block_builder.h"
    "table/block.cc"
    "table/block.h"
    "table/filter_block.cc"
    "table/filter_block.h"
    "table/format.cc"
    "table/format.h"
    "table/iterator_wrapper.h"
    "table/iterator.cc"
    "table/merger.cc"
    "table/merger.h"
    "table/table_builder.cc"
    "table/table.cc"
    "table/two_level_iterator.cc"
    "table/two_level_iterator.h"
    "util/arena.cc"
    "util/arena.h"
    "util/bloom.cc"
    "util/cache.cc"
    "util/coding.cc"
    "util/coding.h"
    "util/comparator.cc"
    "util/crc32c.cc"
    "util/crc32c.h"
    "util/env.cc"
    "util/filter_policy.cc"
    "util/hash.cc"
    "util/hash.h"
    "util/logging.cc"
    "util/logging.h"
    "util/mutexlock.h"
    "util/no_destructor.h"
    "util/options.cc"
    "util/random.h"
    "util/status.cc"

  # Only CMake 3.3+ supports PUBLIC sources in targets exported by "install".
  $<$<VERSION_GREATER:CMAKE_VERSION,3.2>:PUBLIC>
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/c.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/cache.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/comparator.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/db.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/dumpfile.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/env.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/export.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/filter_policy.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/iterator.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/options.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/slice.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/status.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/table_builder.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/table.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/write_batch.h"
)

hypengw/Qcm core/CMakeLists.txt :3

target_sources(
  core
  PUBLIC FILE_SET
         all
         TYPE
         CXX_MODULES
         BASE_DIRS
         src
         FILES
         src/mod.cppm
         src/random.cppm
         src/type_list.cppm
         src/log.cppm
         src/core.cppm
         src/mem.cppm
         src/lambda.cppm
         src/fmt.cppm
         src/helper/mod.cppm
         src/helper/str.cppm
         src/helper/container.cppm)

freeorion/freeorion client/CMakeLists.txt :12

target_sources(freeorionca
        PUBLIC
            ${CMAKE_CURRENT_LIST_DIR}/ClientApp.h
            ${CMAKE_CURRENT_LIST_DIR}/ClientNetworking.h
        PRIVATE
            ${CMAKE_CURRENT_LIST_DIR}/ClientApp.cpp
            ${CMAKE_CURRENT_LIST_DIR}/ClientNetworking.cpp
    )

google-coral/coralmicro apps/elf_loader/CMakeLists.txt :35

target_sources(elf_loader PUBLIC $<TARGET_OBJECTS:libs_nxp_rt1176-sdk_freertos>)

hanickadot/compile-time-regular-expressions CMakeLists.txt :40

target_sources(${PROJECT_NAME} PUBLIC FILE_SET CXX_MODULES TYPE CXX_MODULES FILES ctre.cppm)

halide/Halide src/autoschedulers/common/CMakeLists.txt :18

target_sources(
    Halide_ASLog
    PRIVATE ASLog.cpp
    PUBLIC
    FILE_SET HEADERS
    FILES ASLog.h
)

QMCPACK/qmcpack src/io/hdf/tests/CMakeLists.txt :25

target_sources(${UTEST_EXE} PUBLIC test_hdf_multiarray.cpp)

LMMS/lmms plugins/Sid/resid/CMakeLists.txt :61

target_sources(resid_objects PUBLIC ${WAVE_SRC_OUT})

cnjinhao/nana build/cmake/install_nana.cmake :28

target_sources(nana PUBLIC ${HEADERS})

stotko/stdgpu src/stdgpu/CMakeLists.txt :40

target_sources(stdgpu PUBLIC FILE_SET stdgpu_headers
                                 TYPE HEADERS
                                 BASE_DIRS ${STDGPU_INCLUDE_LOCAL_DIR}
                                 FILES algorithm.h
                                       atomic.cuh
                                       bit.h
                                       bitset.cuh
                                       compiler.h
                                       contract.h
                                       cstddef.h
                                       deque.cuh
                                       device.h
                                       execution.h
                                       functional.h
                                       iterator.h
                                       limits.h
                                       memory.h
                                       mutex.cuh
                                       numeric.h
                                       platform.h
                                       queue.cuh
                                       ranges.h
                                       stack.cuh
                                       type_traits.h
                                       unordered_map.cuh
                                       unordered_set.cuh
                                       utility.h
                                       vector.cuh)

TinyTinni/ValveFileVDF CMakeLists.txt :25

target_sources(ValveFileVDF
    PUBLIC FILE_SET HEADERS
    BASE_DIRS "include"
    FILES
    "include/vdf_parser.hpp"
    )

axmolengine/axmol 3rdparty/fmt/CMakeLists.txt :79

target_sources(${name} PUBLIC FILE_SET fmt TYPE CXX_MODULES
                   FILES ${sources})

dealii/dealii module/CMakeLists.txt :293

target_sources(${DEAL_II_TARGET_NAME}_module_${build_lowercase}
      PUBLIC
      FILE_SET module_interface_units
      TYPE CXX_MODULES
      FILES
        ${_interface_module_partition_units}
        ${_primary_module_interface_unit}
      BASE_DIRS "${CMAKE_CURRENT_BINARY_DIR}/interface_module_partitions"
      )

visualboyadvance-m/visualboyadvance-m src/components/av_recording/CMakeLists.txt :7

target_sources(vbam-components-av-recording
    PRIVATE av_recording.cpp
    PUBLIC av_recording.h
)

cg-tuwien/Auto-Vk CMakeLists.txt :35

target_sources(${PROJECT_NAME} PUBLIC ${avk_Sources})

ovsky/sumi-emu src/common/CMakeLists.txt :184

target_sources(common
        PUBLIC
            fs/fs_android.cpp
            fs/fs_android.h
            android/android_common.cpp
            android/android_common.h
            android/id_cache.cpp
            android/id_cache.h
            android/multiplayer/multiplayer.cpp
            android/multiplayer/multiplayer.h
            android/applets/software_keyboard.cpp
            android/applets/software_keyboard.h
    )

PCSX2/pcsx2 3rdparty/fmt/CMakeLists.txt :75

target_sources(${name} PUBLIC FILE_SET fmt TYPE CXX_MODULES
                   FILES ${sources})

skmp/reicast-emulator CMakeLists.txt :317

target_sources(${TNAME} PUBLIC ${d_aout}/audiobackend_alsa.cpp)

contour-terminal/contour src/vtrasterizer/CMakeLists.txt :40

target_sources(vtrasterizer PRIVATE ${_source_files} PUBLIC ${_header_files})

OFFTKP/felix86 external/fmt/CMakeLists.txt :75

target_sources(${name} PUBLIC FILE_SET fmt TYPE CXX_MODULES
                   FILES ${sources})

jinja2cpp/Jinja2Cpp CMakeLists.txt :156

target_sources(${LIB_TARGET_NAME}
    PUBLIC FILE_SET HEADERS
    FILES ${PublicHeaders}
    BASE_DIRS include
)

openc2e/openc2e externals/fmt/CMakeLists.txt :75

target_sources(${name} PUBLIC FILE_SET fmt TYPE CXX_MODULES
                   FILES ${sources})

trilinos/Trilinos packages/kokkos/cmake/kokkos_tribits.cmake :370

target_sources(
        ${LIBRARY_NAME} PUBLIC FILE_SET ${LIBRARY_NAME}_file_set TYPE CXX_MODULES FILES ${PARSE_MODULE_INTERFACE}
      )

Komet/MediaElch src/CMakeLists.txt :115

target_sources(
  libmediaelch PUBLIC ../ui.qrc ../data/MediaElch.qrc ./database/schema/sql.qrc
)

alexbatalov/fallout2-ce CMakeLists.txt :31

target_sources(${EXECUTABLE_NAME} PUBLIC
    "src/actions.cc"
    "src/actions.h"
    "src/animation.cc"
    "src/animation.h"
    "src/art.cc"
    "src/art.h"
    "src/audio_file.cc"
    "src/audio_file.h"
    "src/audio.cc"
    "src/audio.h"
    "src/automap.cc"
    "src/automap.h"
    "src/autorun.cc"
    "src/autorun.h"
    "src/cache.cc"
    "src/cache.h"
    "src/character_editor.cc"
    "src/character_editor.h"
    "src/character_selector.cc"
    "src/character_selector.h"
    "src/color.cc"
    "src/color.h"
    "src/combat_ai_defs.h"
    "src/combat_ai.cc"
    "src/combat_ai.h"
    "src/combat_defs.h"
    "src/combat.cc"
    "src/combat.h"
    "src/config.cc"
    "src/config.h"
    "src/credits.cc"
    "src/credits.h"
    "src/critter.cc"
    "src/critter.h"
    "src/cycle.cc"
    "src/cycle.h"
    "src/datafile.cc"
    "src/datafile.h"
    "src/db.cc"
    "src/db.h"
    "src/dbox.cc"
    "src/dbox.h"
    "src/debug.cc"
    "src/debug.h"
    "src/dfile.cc"
    "src/dfile.h"
    "src/dialog.cc"
    "src/dialog.h"
    "src/dictionary.cc"
    "src/dictionary.h"
    "src/dinput.cc"
    "src/dinput.h"
    "src/display_monitor.cc"
    "src/display_monitor.h"
    "src/draw.cc"
    "src/draw.h"
    "src/elevator.cc"
    "src/elevator.h"
    "src/endgame.cc"
    "src/endgame.h"
    "src/export.cc"
    "src/export.h"
    "src/file_find.cc"
    "src/file_find.h"
    "src/file_utils.cc"
    "src/file_utils.h"
    "src/font_manager.cc"
    "src/font_manager.h"
    "src/game_config.cc"
    "src/game_config.h"
    "src/game_dialog.cc"
    "src/game_dialog.h"
    "src/game_memory.cc"
    "src/game_memory.h"
    "src/game_mouse.cc"
    "src/game_mouse.h"
    "src/game_movie.cc"
    "src/game_movie.h"
    "src/game_sound.cc"
    "src/game_sound.h"
    "src/game_vars.h"
    "src/game.cc"
    "src/game.h"
    "src/geometry.cc"
    "src/geometry.h"
    "src/graph_lib.cc"
    "src/graph_lib.h"
    "src/heap.cc"
    "src/heap.h"
    "src/input.cc"
    "src/input.h"
    "src/interface.cc"
    "src/interface.h"
    "src/interpreter_extra.cc"
    "src/interpreter_extra.h"
    "src/interpreter_lib.cc"
    "src/interpreter_lib.h"
    "src/interpreter.cc"
    "src/interpreter.h"
    "src/inventory.cc"
    "src/inventory.h"
    "src/item.cc"
    "src/item.h"
    "src/kb.cc"
    "src/kb.h"
    "src/light.cc"
    "src/light.h"
    "src/lips.cc"
    "src/lips.h"
    "src/loadsave.cc"
    "src/loadsave.h"
    "src/main.cc"
    "src/main.h"
    "src/mainmenu.cc"
    "src/mainmenu.h"
    "src/map_defs.h"
    "src/map.cc"
    "src/map.h"
    "src/memory_defs.h"
    "src/memory_manager.cc"
    "src/memory_manager.h"
    "src/memory.cc"
    "src/memory.h"
    "src/message.cc"
    "src/message.h"
    "src/mouse_manager.cc"
    "src/mouse_manager.h"
    "src/mouse.cc"
    "src/mouse.h"
    "src/movie_effect.cc"
    "src/movie_effect.h"
    "src/movie_lib.cc"
    "src/movie_lib.h"
    "src/movie.cc"
    "src/movie.h"
    "src/nevs.cc"
    "src/nevs.h"
    "src/obj_types.h"
    "src/object.cc"
    "src/object.h"
    "src/options.cc"
    "src/options.h"
    "src/palette.cc"
    "src/palette.h"
    "src/party_member.cc"
    "src/party_member.h"
    "src/pcx.cc"
    "src/pcx.h"
    "src/perk_defs.h"
    "src/perk.cc"
    "src/perk.h"
    "src/pipboy.cc"
    "src/pipboy.h"
    "src/proto_instance.cc"
    "src/proto_instance.h"
    "src/proto_types.h"
    "src/proto.cc"
    "src/proto.h"
    "src/queue.cc"
    "src/queue.h"
    "src/random.cc"
    "src/random.h"
    "src/reaction.cc"
    "src/reaction.h"
    "src/region.cc"
    "src/region.h"
    "src/scripts.cc"
    "src/scripts.h"
    "src/select_file_list.cc"
    "src/select_file_list.h"
    "src/skill_defs.h"
    "src/skill.cc"
    "src/skill.h"
    "src/skilldex.cc"
    "src/skilldex.h"
    "src/sound_decoder.cc"
    "src/sound_decoder.h"
    "src/sound_effects_cache.cc"
    "src/sound_effects_cache.h"
    "src/sound_effects_list.cc"
    "src/sound_effects_list.h"
    "src/sound.cc"
    "src/sound.h"
    "src/stat_defs.h"
    "src/stat.cc"
    "src/stat.h"
    "src/string_parsers.cc"
    "src/string_parsers.h"
    "src/svga.cc"
    "src/svga.h"
    "src/text_font.cc"
    "src/text_font.h"
    "src/text_object.cc"
    "src/text_object.h"
    "src/tile.cc"
    "src/tile.h"
    "src/trait_defs.h"
    "src/trait.cc"
    "src/trait.h"
    "src/version.cc"
    "src/version.h"
    "src/widget.cc"
    "src/widget.h"
    "src/win32.cc"
    "src/win32.h"
    "src/window_manager_private.cc"
    "src/window_manager_private.h"
    "src/window_manager.cc"
    "src/window_manager.h"
    "src/window.cc"
    "src/window.h"
    "src/word_wrap.cc"
    "src/word_wrap.h"
    "src/worldmap.cc"
    "src/worldmap.h"
    "src/xfile.cc"
    "src/xfile.h"
)

GPUOpen-LibrariesAndSDKs/Capsaicin src/core/CMakeLists.txt :49

target_sources(capsaicin PUBLIC
    FILE_SET capsaicin_shaders TYPE HEADERS
    BASE_DIRS ${CMAKE_CURRENT_SOURCE_DIR} FILES "${CAPSAICIN_SHADER_FILES}"
)

getml/sqlgen CMakeLists.txt :138

target_sources(sqlgen
        PUBLIC
        FILE_SET sqlgen_headers
        TYPE HEADERS
        BASE_DIRS $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>
        FILES ${SQLGEN_HEADERS})

eigenteam/eigen-git-mirror cmake/FindComputeCpp.cmake :356

target_sources(${SDK_BUILD_IR_TARGET} PUBLIC ${SDK_BUILD_IR_SOURCE} ${outputSyclFile})

pyside/pyside-setup examples/scriptableapplication/CMakeLists.txt :177

target_sources(${PROJECT_NAME} PUBLIC ${SOURCES})

meemknight/ourCraft thirdparty/assimp-5.2.4/test/CMakeLists.txt :225

target_sources(unit PUBLIC ${Assimp_SOURCE_DIR}/contrib/gtest/src/gtest-all.cc)

mahilab/mahi-gui examples/CMakeLists.txt :35

target_sources(nvg_demo PUBLIC "${CMAKE_SOURCE_DIR}/3rdparty/nanovg/example/demo.c")

Off-World-Live/obs-spout2-plugin cmake/common/helpers_common.cmake :43

target_sources(plugin-support PRIVATE plugin-support.c PUBLIC src/plugin-support.h)

peercoin/peercoin src/crc32c/CMakeLists.txt :274

target_sources(crc32c
  PRIVATE
    "${PROJECT_BINARY_DIR}/include/crc32c/crc32c_config.h"
    "src/crc32c_arm64.h"
    "src/crc32c_arm64_check.h"
    "src/crc32c_internal.h"
    "src/crc32c_portable.cc"
    "src/crc32c_prefetch.h"
    "src/crc32c_read_le.h"
    "src/crc32c_round_up.h"
    "src/crc32c_sse42.h"
    "src/crc32c_sse42_check.h"
    "src/crc32c.cc"

  # Only CMake 3.3+ supports PUBLIC sources in targets exported by "install".
  $<$<VERSION_GREATER:CMAKE_VERSION,3.2>:PUBLIC>
    "include/crc32c/crc32c.h"
)

google/crc32c CMakeLists.txt :274

target_sources(crc32c
  PRIVATE
    "${PROJECT_BINARY_DIR}/include/crc32c/crc32c_config.h"
    "src/crc32c_arm64.h"
    "src/crc32c_arm64_check.h"
    "src/crc32c_internal.h"
    "src/crc32c_portable.cc"
    "src/crc32c_prefetch.h"
    "src/crc32c_read_le.h"
    "src/crc32c_round_up.h"
    "src/crc32c_sse42.h"
    "src/crc32c_sse42_check.h"
    "src/crc32c.cc"

  # Only CMake 3.3+ supports PUBLIC sources in targets exported by "install".
  $<$<VERSION_GREATER:CMAKE_VERSION,3.2>:PUBLIC>
    "include/crc32c/crc32c.h"
)

XRPLF/rippled external/secp256k1/src/CMakeLists.txt :16

target_sources(secp256k1_asm_arm PUBLIC
    asm/field_10x26_arm.s
  )

avakar/vcrtl CMakeLists.txt :33

target_sources(vcrtl_driver PUBLIC
    src/x64/capture.asm
    src/x64/cpu_context.h
    src/x64/eh_structs_x64.h
    src/x64/fh3.cpp
    src/x64/fh4.cpp
    src/x64/throw.cpp
    src/x64/throw.h
    src/x64/unwind_handler.cpp
    )

subsurface/subsurface CMakeLists.txt :505

target_sources(${SUBSURFACE_TARGET} PUBLIC ${MOBILE_SRC} ${MOBILE_RESOURCES})

bitcoin-sv/bitcoin-sv src/leveldb/CMakeLists.txt :117

target_sources(leveldb
  PRIVATE
    "${PROJECT_BINARY_DIR}/${LEVELDB_PORT_CONFIG_DIR}/port_config.h"
    "db/builder.cc"
    "db/builder.h"
    "db/c.cc"
    "db/db_impl.cc"
    "db/db_impl.h"
    "db/db_iter.cc"
    "db/db_iter.h"
    "db/dbformat.cc"
    "db/dbformat.h"
    "db/dumpfile.cc"
    "db/filename.cc"
    "db/filename.h"
    "db/log_format.h"
    "db/log_reader.cc"
    "db/log_reader.h"
    "db/log_writer.cc"
    "db/log_writer.h"
    "db/memtable.cc"
    "db/memtable.h"
    "db/repair.cc"
    "db/skiplist.h"
    "db/snapshot.h"
    "db/table_cache.cc"
    "db/table_cache.h"
    "db/version_edit.cc"
    "db/version_edit.h"
    "db/version_set.cc"
    "db/version_set.h"
    "db/write_batch_internal.h"
    "db/write_batch.cc"
    "port/port_stdcxx.h"
    "port/port.h"
    "port/thread_annotations.h"
    "table/block_builder.cc"
    "table/block_builder.h"
    "table/block.cc"
    "table/block.h"
    "table/filter_block.cc"
    "table/filter_block.h"
    "table/format.cc"
    "table/format.h"
    "table/iterator_wrapper.h"
    "table/iterator.cc"
    "table/merger.cc"
    "table/merger.h"
    "table/table_builder.cc"
    "table/table.cc"
    "table/two_level_iterator.cc"
    "table/two_level_iterator.h"
    "util/arena.cc"
    "util/arena.h"
    "util/bloom.cc"
    "util/cache.cc"
    "util/coding.cc"
    "util/coding.h"
    "util/comparator.cc"
    "util/crc32c.cc"
    "util/crc32c.h"
    "util/env.cc"
    "util/filter_policy.cc"
    "util/hash.cc"
    "util/hash.h"
    "util/logging.cc"
    "util/logging.h"
    "util/mutexlock.h"
    "util/no_destructor.h"
    "util/options.cc"
    "util/random.h"
    "util/status.cc"

  # Only CMake 3.3+ supports PUBLIC sources in targets exported by "install".
  $<$<VERSION_GREATER:CMAKE_VERSION,3.2>:PUBLIC>
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/c.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/cache.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/comparator.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/db.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/dumpfile.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/env.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/export.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/filter_policy.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/iterator.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/options.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/slice.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/status.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/table_builder.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/table.h"
    "${LEVELDB_PUBLIC_INCLUDE_DIR}/write_batch.h"
)

superg/redumper CMakeLists.txt :98

target_sources(redumper
    PUBLIC
    "dvd/css/css_tables.cc"
    "main.cc"
    "systems/system.hh"
    "utils/throw_line.hh"
    "redumper.manifest"
    PRIVATE FILE_SET cxx_modules TYPE CXX_MODULES FILES
    "analyzers/analyzer.ixx"
    "analyzers/silence.ixx"
    "analyzers/sync.ixx"
    "cd/cd.ixx"
    "cd/cd_common.ixx"
    "cd/cd_dump_extra.ixx"
    "cd/cd_dump.ixx"
    "cd/cdrom.ixx"
    "cd/ecc.ixx"
    "cd/edc.ixx"
    "cd/fix_msf.ixx"
    "cd/offset_manager.ixx"
    "cd/protection.ixx"
    "cd/scrambler.ixx"
    "cd/cd_split.ixx"
    "cd/subcode.ixx"
    "cd/toc.ixx"
    "crc/crc.ixx"
    "crc/crc16_gsm.ixx"
    "crc/crc32.ixx"
    "drive/flash_plextor.ixx"
    "drive/flash_sd616.ixx"
    "drive/flash_tsst.ixx"
    "drive/plextor.ixx"
    "drive/mediatek.ixx"
    "drive/test.ixx"
    "dvd/dvd_dump.ixx"
    "dvd/dvd_key.ixx"
    "dvd/dvd_split.ixx"
    "dvd/css/css.ixx"
    "filesystem/high_sierra/high_sierra.ixx"
    "filesystem/high_sierra/high_sierra_browser.ixx"
    "filesystem/high_sierra/high_sierra_defs.ixx"
    "filesystem/iso9660/iso9660.ixx"
    "filesystem/iso9660/iso9660_browser.ixx"
    "filesystem/iso9660/iso9660_defs.ixx"
    "filesystem/iso9660/iso9660_entry.ixx"
    "filesystem/iso9660/iso9660_map.ixx"
    "hash/block_hasher.ixx"
    "hash/md5.ixx"
    "hash/sha1.ixx"
    "readers/disc_read_cdda_reader.ixx"
    "readers/disc_read_reader.ixx"
    "readers/image_bin_reader.ixx"
    "readers/image_iso_reader.ixx"
    "readers/image_raw_reader.ixx"
    "readers/image_scram_reader.ixx"
    "readers/image_simple_reader.ixx"
    "readers/data_reader.ixx"
    "scsi/cmd.ixx"
    "scsi/mmc.ixx"
    "scsi/sptd.ixx"
    "systems/securom.ixx"
    "systems/s_cdrom.ixx"
    "systems/s_high_sierra.ixx"
    "systems/s_iso.ixx"
    "systems/dc.ixx"
    "systems/mcd.ixx"
    "systems/psx.ixx"
    "systems/ps2.ixx"
    "systems/ps3.ixx"
    "systems/ps4.ixx"
    "systems/ps5.ixx"
    "systems/sat.ixx"
    "systems/systems.ixx"
    "utils/animation.ixx"
    "utils/endian.ixx"
    "utils/file_io.ixx"
    "utils/hex_bin.ixx"
    "utils/logger.ixx"
    "utils/misc.ixx"
    "utils/signal.ixx"
    "utils/strings.ixx"
	"utils/win32.ixx"
    "utils/xbox.ixx"
    "common.ixx"
    "debug.ixx"
    "drive.ixx"
    "hash.ixx"
    "info.ixx"
    "offsets.ixx"
    "options.ixx"
    "range.ixx"
    "redumper.ixx"
    "rings.ixx"
    "rom_entry.ixx"
    "skeleton.ixx"
    "version.ixx"
)

fpagliughi/sockpp tests/unit/CMakeLists.txt :75

target_sources(unit_tests PUBLIC
        ${CMAKE_CURRENT_SOURCE_DIR}/test_unix_address.cpp
        ${CMAKE_CURRENT_SOURCE_DIR}/test_unix_stream_socket.cpp
        ${CMAKE_CURRENT_SOURCE_DIR}/test_unix_dgram_socket.cpp
    )

podofo/podofo src/podofo/CMakeLists.txt :116

target_sources(${PODOFO_TARGET} PUBLIC FILE_SET headers TYPE HEADERS
    BASE_DIRS "${PROJECT_SOURCE_DIR}/src" ${CMAKE_CURRENT_BINARY_DIR}
    FILES ${PODOFO_HEADERS})