serene/tools/tbl-srn/CMakeLists.txt

36 lines
1.2 KiB
CMake
Raw Normal View History

# Serene Programming Language
#
# Copyright (c) 2019-2021 Sameer Rahmani <lxsameer@gnu.org>
#
# This program 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, version 2.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
2022-01-22 19:10:57 +00:00
include_directories(${PROJECT_SOURCE_DIR}/tools/tbl-srn)
add_executable(tbl-srn
2022-01-22 19:10:57 +00:00
serene/errors-backend.cpp
main.cpp
)
add_executable(SereneTablegen ALIAS tbl-srn)
set(SERENE_TABLEGEN $<TARGET_FILE:tbl-srn> CACHE
STRING "Native TableGen executable. Saves building one when cross-compiling.")
set(SERENE_TABLEGEN_EXE SereneTablegen
CACHE STRING "Where to find the tbl-srn binary")
set(SERENE_TABLEGEN_TARGET SereneTablegen CACHE
STRING "Target name for the tbl-srn")
target_link_libraries(tbl-srn PRIVATE LLVMTableGenGlobalISel ${llvm_libs})
set_target_properties(tbl-srn PROPERTIES FOLDER "tbl-srn")