blob: 01945ba20a8c99c0b5f81b7c11b20ed8f207cbde (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#pragma once
enum cmTargetLinkLibraryType
{
GENERAL_LibraryType,
DEBUG_LibraryType,
OPTIMIZED_LibraryType
};
|