forked from uclouvain/openjpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unmaintained JPWL, JP3D and MJ2
Since uclouvain@85a87cd the components JPWL, JP3d and MJ2 are not maintained. As win32 build was facing an issue with mj2 and lrintf inline, see uclouvain#1339 Better to remove these useles componentes who will be removed in v2.5.0.
- Loading branch information
Stéphane Cerveau
committed
Oct 25, 2021
1 parent
ea89463
commit 3560d2b
Showing
11 changed files
with
17 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
# source code for openjpeg project: | ||
# Part 1 & 2: | ||
subdir('openjp2') | ||
# optionals components: | ||
if get_option('build_jpwl') | ||
subdir('openjpwl') | ||
if get_option('build_mj2') | ||
subdir('openmj2') | ||
endif | ||
else | ||
if get_option('build_mj2') | ||
message('WARNING: you need to enable JPWL to get MJ2') | ||
endif | ||
endif | ||
|
||
# optionals components: | ||
if get_option('build_jpip') | ||
subdir('openjpip') | ||
endif | ||
if get_option('build_jp3d') | ||
subdir('openjp3d') | ||
|
||
if get_option('build_pkgconfig_files') | ||
pkgconfig = import('pkgconfig') | ||
pkgconfig.generate(openjp2_lib, name: 'libopenjp2', | ||
description: 'JPEG2000 library (Part 1 and 2)', | ||
version: meson.project_version(), | ||
libraries: openjp2_lib) | ||
if get_option('build_jpip') | ||
pkgconfig.generate(openjpip_lib, name: 'libopenjpip', | ||
description: 'JPEG2000 Interactivity tools, APIs and protocols (Part 9)', | ||
version: meson.project_version(), | ||
libraries: openjpip_lib) | ||
endif | ||
endif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters