mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 08:28:59 +08:00
836a2d684d
Removes deprecated no-op features.
23 lines
771 B
Diff
23 lines
771 B
Diff
diff --git a/src/lib/openjpip/CMakeLists.txt b/src/lib/openjpip/CMakeLists.txt
|
|
index e9d8193..6584a74 100644
|
|
--- a/src/lib/openjpip/CMakeLists.txt
|
|
+++ b/src/lib/openjpip/CMakeLists.txt
|
|
@@ -52,14 +52,14 @@ set(LOCAL_SRCS
|
|
)
|
|
|
|
# Build the library
|
|
+add_library(openjpip ${OPENJPIP_SRCS} ${LOCAL_SRCS})
|
|
if(WIN32)
|
|
if(BUILD_SHARED_LIBS)
|
|
- add_definitions(-DOPJ_EXPORTS)
|
|
+ target_compile_definitions(openjpip PRIVATE OPJ_EXPORTS)
|
|
else()
|
|
- add_definitions(-DOPJ_STATIC)
|
|
+ target_compile_definitions(openjpip PUBLIC OPJ_STATIC)
|
|
endif()
|
|
endif()
|
|
-add_library(openjpip ${OPENJPIP_SRCS} ${LOCAL_SRCS})
|
|
set_target_properties(openjpip
|
|
PROPERTIES ${OPENJPEG_LIBRARY_PROPERTIES})
|
|
target_compile_options(openjpip PRIVATE ${OPENJPEG_LIBRARY_COMPILE_OPTIONS})
|