Revision 3220991eadecab0b1ab062a91e547d71e7350ef4 authored by Dmitri Naumov on 27 March 2023, 16:02:43 UTC, committed by Dmitri Naumov on 28 March 2023, 20:57:06 UTC
Replace assertion; If collection is empty, the condition is fulfilled.
1 parent 56a047a
Raw File
CMakeInfo.h
/**
 * \brief  CMake information.
 *
 * \file
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <string>

#include "cmakeinfolib_export.h"

namespace CMakeInfoLib
{

namespace CMakeInfo
{
    extern CMAKEINFOLIB_EXPORT const std::string python_virtualenv_sitepackages;
    extern CMAKEINFOLIB_EXPORT const std::string cmake_args;
}  // namespace
}  // namespace
back to top