Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « hostcommon « cli « corehost « installer « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: deac26114aa016c293285a0c1f65fb8e2713b28c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Licensed to the .NET Foundation under one or more agreements.
# The .NET Foundation licenses this file to you under the MIT license.
# See the LICENSE file in the project root for more information.

project(hostcommon)

set(DOTNET_PROJECT_NAME "hostcommon")

# Include directories
include_directories(../fxr)
include_directories(../json)

# CMake does not recommend using globbing since it messes with the freshness checks
set(SOURCES
    ../json_parser.cpp
    ../deps_format.cpp
    ../deps_entry.cpp
    ../host_startup_info.cpp
    ../roll_forward_option.cpp
    ../fx_definition.cpp
    ../fx_reference.cpp
    ../fxr/fx_ver.cpp
    ../version.cpp
    ../version_compatibility_range.cpp
    ../runtime_config.cpp
)

set(HEADERS
    ../json_parser.h
    ../deps_format.h
    ../deps_entry.h
    ../host_startup_info.h
    ../roll_forward_option.h
    ../fx_definition.h
    ../fx_reference.h
    ../fxr/fx_ver.h
    ../version.h
    ../version_compatibility_range.h
    ../runtime_config.h
)

set(SKIP_VERSIONING 1)
include(../lib_static.cmake)