[trunk] FolderReorgProposal task: Fix Viewer
Update issue 177
This commit is contained in:
parent
f71af2a2ef
commit
a4fa18e92d
|
@ -17,6 +17,5 @@ if(BUILD_JP3D)
|
|||
add_subdirectory(jp3d)
|
||||
endif()
|
||||
|
||||
if(BUILD_VIEWER)
|
||||
# wx apps:
|
||||
add_subdirectory(wx)
|
||||
endif()
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
#
|
||||
if(BUILD_VIEWER)
|
||||
add_subdirectory(OPJViewer)
|
||||
endif()
|
|
@ -6,6 +6,9 @@ include(${wxWidgets_USE_FILE})
|
|||
include_directories(
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../..
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/..
|
||||
${OPENJPEG_SOURCE_DIR}/src/lib
|
||||
${OPENJPEG_SOURCE_DIR}/src/bin
|
||||
${OPENJPEG_SOURCE_DIR}/src/lib/openjp2
|
||||
)
|
||||
|
||||
# original flags:
|
||||
|
@ -19,7 +22,7 @@ set(OPJV_SRCS
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/source/OPJDialogs.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/source/OPJThreads.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/source/OPJAbout.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../codec/index.c
|
||||
${OPENJPEG_SOURCE_DIR}/src/bin/jp2/index.c
|
||||
)
|
||||
add_executable(opjviewer ${OPJV_SRCS})
|
||||
target_link_libraries(opjviewer ${wxWidgets_LIBRARIES} openjpeg)
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
#include "wx/toolbar.h"
|
||||
#include "wx/artprov.h"
|
||||
|
||||
#include "libopenjpeg/openjpeg.h"
|
||||
#include "openjp2/openjpeg.h"
|
||||
|
||||
//#include "imagj2k.h"
|
||||
//#include "imagjp2.h"
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
#include "wx/module.h"
|
||||
#endif
|
||||
|
||||
#include "libopenjpeg/openjpeg.h"
|
||||
#include "openjp2/openjpeg.h"
|
||||
|
||||
#include "wx/filefn.h"
|
||||
#include "wx/wfstream.h"
|
||||
|
|
|
@ -44,8 +44,8 @@
|
|||
#if wxUSE_LIBOPENJPEG
|
||||
|
||||
#include "wx/image.h"
|
||||
#include "libopenjpeg/openjpeg.h"
|
||||
#include "codec/index.h"
|
||||
#include "openjp2/openjpeg.h"
|
||||
#include "jp2/index.h"
|
||||
|
||||
#define wxBITMAP_TYPE_JPEG2000 50
|
||||
|
||||
|
|
Loading…
Reference in New Issue