forked from OpenVisualCloud/Dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
34 lines (25 loc) · 1.07 KB
/
CMakeLists.txt
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
cmake_minimum_required (VERSION 2.8)
Project(DockerFiles NONE)
add_custom_target(update_link)
add_custom_target(update_dockerfile)
add_custom_target(generate_readme)
add_custom_target(upload_readme)
if (NOT DEFINED BUILD_VERSION)
set(BUILD_VERSION "1.0")
endif()
if (NOT DEFINED BUILD_FDKAAC)
set(BUILD_FDKAAC "ON")
endif()
if (NOT DEFINED DOCKER_PREFIX)
set(DOCKER_PREFIX "openvisualcloud")
endif()
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/script/")
enable_testing()
include(platform)
# legal message
message(
"\nThis script will build third party components licensed under various open source licenses into your container images. The terms under which those components may be used and distributed can be found with the license document that is provided with those components. Please familiarize yourself with those terms to ensure your distribution of those components complies with the terms of those licenses.\n\n"
"-- Setting: BUILD_VERSION=${BUILD_VERSION}\n"
"-- Setting: BUILD_FDKAAC=${BUILD_FDKAAC}\n"
"-- Setting: DOCKER_PREFIX=${DOCKER_PREFIX}\n"
)