## CMakeLists.txt					-*- CMake -*-
##
## Copyright (C) 2013-2021 Christian Schenk
## 
## This file 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 2, or (at your
## option) any later version.
## 
## This file 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 file; if not, write to the Free Software
## Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
## USA.

use_static_crt()

add_library(${setup_lib_name} STATIC ${setup_sources})

set_property(TARGET ${setup_lib_name} PROPERTY FOLDER ${MIKTEX_CURRENT_FOLDER})

add_dependencies(${setup_lib_name} gen-${MIKTEX_COMP_ID}-sources)

set_source_files_properties(
  ${generated_${MIKTEX_COMP_ID}_sources}
  PROPERTIES
    GENERATED TRUE
)

target_compile_definitions(${setup_lib_name}
  PUBLIC
    -DMIKTEX_SETUP_STATIC
)

target_include_directories(${setup_lib_name}
  PUBLIC
    ${public_include_directories}
)

target_link_libraries(${setup_lib_name}
  PUBLIC 
    ${core_lib_name}
    ${loc_lib_name}
    ${mpm_lib_name}
    ${nlohmann_json_lib_name}
)

if(USE_SYSTEM_FMT)
  target_link_libraries(${setup_lib_name} PRIVATE MiKTeX::Imported::FMT)
else()
  target_link_libraries(${setup_lib_name} PRIVATE ${fmt_lib_name})
endif()

target_link_libraries(${setup_lib_name}
  PRIVATE 
    ${extractor_lib_name}
)

source_group(Public FILES ${public_headers})
