# Serene Programming Language # # Copyright (c) 2019-2021 Sameer Rahmani # # 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 . include_directories(${PROJECT_SOURCE_DIR}/tools/tbl-srn) add_executable(tbl-srn serene/errors-backend.cpp main.cpp ) add_executable(SereneTablegen ALIAS tbl-srn) set(SERENE_TABLEGEN $ 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")