# # SPDX-FileCopyrightText: Copyright (c) 1993-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # add_executable(trtexec trtexec_main.cpp trtexec.cpp) target_link_libraries(trtexec PRIVATE trt_samples_common) if (TRT_BUILD_SAMPLES) add_dependencies(tensorrt_samples trtexec) endif() # Windows-specific configuration for long path support if(MSVC) # For long path support to work on Windows, users must # additionally enable a system-level setting. # Adding manifest as a source file works on CMake 3.4+. target_sources(trtexec PRIVATE trtexec.manifest) endif() installLibraries( TARGETS trtexec OPTIONAL COMPONENT external EXPORT TensorRT ) # When statically linked, trtexec requires the plugins library. # Otherwise it will resolve it via dlopen and doesn't need a link-time dependency. if(${TRT_BUILD_SAMPLES_LINK_STATIC_TRT}) target_link_libraries(trtexec PRIVATE $ ) endif() # Change the file name if TRT_WINML variable is set set(sample_name "trtexec") if (${TRT_BUILD_WINML}) set(sample_name "tensorrt_rtx") endif() set_target_properties(trtexec PROPERTIES OUTPUT_NAME ${sample_name} ) # In this mode, we build an additional binary trtexec_static that always links tensorrt_static. if(${TRT_BUILD_TRTEXEC_STATIC}) add_executable(trtexec_static trtexec_main.cpp trtexec.cpp) target_link_libraries(trtexec_static PRIVATE trt_samples_common) if (TRT_BUILD_SAMPLES) add_dependencies(tensorrt_samples trtexec_static) endif() installLibraries( TARGETS trtexec_static OPTIONAL COMPONENT internal ) target_link_libraries(trtexec_static PRIVATE $ $ ) # Link as PIE and the binary will be loaded at a high address. # Then, avoid conflicts with ASan's shadow memory range. # MSVC does not support -pie. if(NOT MSVC) target_link_options(trtexec_static PRIVATE -pie) endif() endif()