Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Ben Boeckel
ParaView
Commits
b309a8e9
Commit
b309a8e9
authored
Dec 14, 2004
by
Ken Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ENH: added more release support
parent
e1f0b483
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
1 deletion
+27
-1
CMakeLists.txt
CMakeLists.txt
+17
-1
ChangeLog.txt
ChangeLog.txt
+10
-0
No files found.
CMakeLists.txt
View file @
b309a8e9
...
...
@@ -14,7 +14,7 @@ ENDIF(INSOURCE)
# ParaView version number. An even minor number corresponds to releases.
SET
(
PARAVIEW_VERSION_MAJOR 1
)
SET
(
PARAVIEW_VERSION_MINOR 8
)
SET
(
PARAVIEW_VERSION_PATCH
1
)
SET
(
PARAVIEW_VERSION_PATCH
2
)
SET
(
PARAVIEW_VERSION
"
${
PARAVIEW_VERSION_MAJOR
}
.
${
PARAVIEW_VERSION_MINOR
}
"
)
SET
(
PARAVIEW_VERSION_FULL
"
${
PARAVIEW_VERSION
}
.
${
PARAVIEW_VERSION_PATCH
}
"
)
SET
(
CMAKE_MODULE_PATH
${
ParaView_SOURCE_DIR
}
/CMake
)
...
...
@@ -23,8 +23,24 @@ SET (LIBRARY_OUTPUT_PATH ${ParaView_BINARY_DIR}/bin CACHE INTERNAL
SET
(
EXECUTABLE_OUTPUT_PATH
${
ParaView_BINARY_DIR
}
/bin CACHE INTERNAL
"Single output directory for building all executables."
)
#########################################################################
# prepare for a release
FIND_PROGRAM
(
NSIS_MAKENSIS NAMES makensis
PATHS [HKEY_LOCAL_MACHINE\\SOFTWARE\\NSIS]
DOC
"Where is makensis.exe located"
)
MARK_AS_ADVANCED
(
NSIS_MAKENSIS
)
FIND_PROGRAM
(
WINZIP_WZZIP NAMES wzzip
PATHS
"C:/Program Files/WinZip"
DOC
"Where is makensis.exe located"
)
MARK_AS_ADVANCED
(
WINZIP_WZZIP
)
CONFIGURE_FILE
(
${
ParaView_SOURCE_DIR
}
/Utilities/Release/ParaView.nsi.in
${
ParaView_BINARY_DIR
}
/Utilities/Release/ParaView.nsi IMMEDIATE @ONLY
)
CONFIGURE_FILE
(
${
ParaView_SOURCE_DIR
}
/Utilities/Release/Win32Release.sh.in
${
ParaView_BINARY_DIR
}
/Utilities/Release/Win32Release.sh IMMEDIATE @ONLY
)
CONFIGURE_FILE
(
${
ParaView_SOURCE_DIR
}
/Utilities/Release/paraview_release.sh.in
${
ParaView_BINARY_DIR
}
/Utilities/Release/paraview_release.sh IMMEDIATE @ONLY
)
# The client server wrapper macro needs this name for
# BUILD_SHARED_LIBS so it can work both inside and outside the tree.
...
...
ChangeLog.txt
0 → 100644
View file @
b309a8e9
Changes in 1.8.2
- added log10 button to calculator
- fixe the array calculator to handle cell data
- fixed memory leak in MPI sends for vtkParallelRenderManager
- fixed a "no-input" issue with vtkDistributedDataFilter (D3)
- fix for non-IceT compositor and offscreen rendering accessing the display
- fix for the Data Caching on the Animation Tab
- fix to updating contour filter scalar range
- fix for EnSight readers to better handle valid EnSight files
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment