mirror of
https://github.com/mhx/dwarfs.git
synced 2025-08-04 02:06:22 -04:00
47 lines
1.3 KiB
CMake
47 lines
1.3 KiB
CMake
#
|
|
# Copyright (c) Marcus Holland-Moritz
|
|
#
|
|
# This file is part of dwarfs.
|
|
#
|
|
# dwarfs is free software: you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation, either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# dwarfs is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# dwarfs. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.28.0)
|
|
|
|
add_library(
|
|
dwarfs_tool OBJECT
|
|
|
|
src/tool/iolayer.cpp
|
|
src/tool/main_adapter.cpp
|
|
src/tool/safe_main.cpp
|
|
src/tool/sys_char.cpp
|
|
src/tool/tool.cpp
|
|
)
|
|
|
|
if(WITH_MAN_OPTION)
|
|
target_sources(dwarfs_tool PRIVATE
|
|
src/tool/pager.cpp
|
|
src/tool/render_manpage.cpp
|
|
)
|
|
endif()
|
|
|
|
target_link_libraries(dwarfs_tool PUBLIC dwarfs_common)
|
|
|
|
target_compile_definitions(
|
|
dwarfs_tool PRIVATE DWARFS_BUILD_ID="${CMAKE_SYSTEM_PROCESSOR}, ${CMAKE_SYSTEM}, ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}"
|
|
)
|
|
|
|
list(APPEND LIBDWARFS_OBJECT_TARGETS
|
|
dwarfs_tool
|
|
)
|