File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ endif()
31
31
32
32
add_subdirectory (src )
33
33
34
- if (DISABLE_APPS )
34
+ if (AVTRANSCODER_DISABLE_APPS )
35
35
message ("Apps disabled, will not build applications." )
36
36
else ()
37
37
add_subdirectory (app )
Original file line number Diff line number Diff line change @@ -17,18 +17,18 @@ cmake .. -DFFMPEG_INCLUDE_DIR=/path/to/include/ -DFFMPEG_LIBRARY_DIR=/path/to/li
17
17
18
18
#### To not build apps
19
19
```
20
- cmake .. -DDISABLE_APPS =True
20
+ cmake .. -DAVTRANSCODER_DISABLE_APPS =True
21
21
```
22
22
23
23
#### To not build bindings
24
24
```
25
- cmake .. -DDISABLE_BINDINGS =True
25
+ cmake .. -DAVTRANSCODER_DISABLE_BINDINGS =True
26
26
```
27
27
```
28
- cmake .. -DDISABLE_PYTHON_BINDING =True
28
+ cmake .. -DAVTRANSCODER_DISABLE_PYTHON_BINDING =True
29
29
```
30
30
```
31
- cmake .. -DDISABLE_JAVA_BINDING =True
31
+ cmake .. -DAVTRANSCODER_DISABLE_JAVA_BINDING =True
32
32
```
33
33
34
34
#### Other useful flags
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ install(
62
62
)
63
63
64
64
### Bindings with SWIG
65
- if (DISABLE_BINDINGS )
65
+ if (AVTRANSCODER_DISABLE_BINDINGS )
66
66
message ("Bindings disabled, will not build bindings." )
67
67
return ()
68
68
endif ()
@@ -78,7 +78,7 @@ if(SWIG_FOUND)
78
78
set_source_files_properties (${AVTRANSCODER_BINDING_FILE} PROPERTIES CPLUSPLUS ON )
79
79
80
80
### PYTHON BINDING
81
- if (DISABLE_PYTHON_BINDING )
81
+ if (AVTRANSCODER_DISABLE_PYTHON_BINDING )
82
82
message ("PYTHON binding disabled, will not build python binding." )
83
83
else ()
84
84
find_package (PythonLibs )
@@ -113,7 +113,7 @@ if(SWIG_FOUND)
113
113
endif ()
114
114
115
115
### JAVA BINDING
116
- if (DISABLE_JAVA_BINDING )
116
+ if (AVTRANSCODER_DISABLE_JAVA_BINDING )
117
117
message ("JAVA binding disabled, will not build java binding." )
118
118
else ()
119
119
find_package (Java )
You can’t perform that action at this time.
0 commit comments