2019-04-17 12:41:15 +01:00
|
|
|
# This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
#
|
|
|
|
# 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; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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, you may find one here:
|
|
|
|
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
# or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
# or you may write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
|
2023-04-24 18:40:57 -04:00
|
|
|
include( KiCadQABuildUtils )
|
2017-03-07 13:11:24 +01:00
|
|
|
|
2025-01-04 22:08:06 -05:00
|
|
|
macro(setup_qa_env target_name)
|
|
|
|
if( MSVC )
|
|
|
|
# Once we move the cmake minimum to 3.22, we can use this for all platforms and not just MSVC
|
|
|
|
# the old method only worked on MSVC due to a bug in cmake which was later fixed after ENVIRONMENT_MODIFICATION was added
|
|
|
|
set( PATH_MODIFICATION
|
|
|
|
"PATH=path_list_prepend:${VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug/bin"
|
|
|
|
"PATH=path_list_prepend:${CMAKE_BINARY_DIR}/kicad/"
|
|
|
|
"PATH=path_list_prepend:${CMAKE_BINARY_DIR}/common/"
|
|
|
|
"PATH=path_list_prepend:${CMAKE_BINARY_DIR}/api/"
|
|
|
|
"PATH=path_list_prepend:${CMAKE_BINARY_DIR}/common/gal/"
|
|
|
|
"PATH=path_list_prepend:${CMAKE_BINARY_DIR}/pcbnew/"
|
|
|
|
"PATH=path_list_prepend:${CMAKE_BINARY_DIR}/eeschema/" )
|
|
|
|
set_tests_properties( ${target_name}
|
|
|
|
PROPERTIES
|
|
|
|
ENVIRONMENT_MODIFICATION "${PATH_MODIFICATION}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2019-01-07 11:11:47 +00:00
|
|
|
# Shared QA helper libraries
|
2018-10-06 15:35:17 +01:00
|
|
|
add_subdirectory( qa_utils )
|
2019-01-11 22:03:45 +00:00
|
|
|
add_subdirectory( pcbnew_utils )
|
2022-09-06 13:26:36 -07:00
|
|
|
add_subdirectory( schematic_utils )
|
2018-10-06 15:35:17 +01:00
|
|
|
|
2019-01-07 11:11:47 +00:00
|
|
|
# Unit tests
|
2023-04-24 18:40:57 -04:00
|
|
|
add_subdirectory( tests )
|
2019-04-15 18:09:27 +01:00
|
|
|
|
2018-12-24 14:16:20 +00:00
|
|
|
# Utility/debugging/profiling programs
|
2022-03-18 20:50:37 +01:00
|
|
|
add_subdirectory( tools )
|
2020-09-05 01:19:01 +02:00
|
|
|
|
2022-06-09 18:30:51 +00:00
|
|
|
if( KICAD_SIGNAL_INTEGRITY )
|
2022-10-25 09:45:40 +00:00
|
|
|
#add_subdirectory( ibis )
|
2022-06-09 18:30:51 +00:00
|
|
|
endif()
|