-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from SuperElastix/develop
RELEASE: merging develop into master
- Loading branch information
Showing
1,166 changed files
with
2,808 additions
and
1,895 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
# Generated files and | ||
help/ | ||
cmake* | ||
Makefile | ||
CMakeFiles/ | ||
CTestTestfile.cmake |
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
function(elastix_export_target tgt) | ||
# Remove the build tree's ElastixTargets file if this is the first call: | ||
get_property(first_time GLOBAL PROPERTY ELASTIX_FIRST_EXPORTED_TARGET) | ||
if(NOT first_time) | ||
file(REMOVE ${CMAKE_BINARY_DIR}/ElastixTargets.cmake) | ||
set_property(GLOBAL PROPERTY ELASTIX_FIRST_EXPORTED_TARGET 1) | ||
endif() | ||
|
||
get_target_property( type ${tgt} TYPE ) | ||
if (type STREQUAL "STATIC_LIBRARY" OR | ||
type STREQUAL "MODULE_LIBRARY" OR | ||
type STREQUAL "SHARED_LIBRARY") | ||
set_property(TARGET ${tgt} PROPERTY VERSION 1) | ||
set_property(TARGET ${tgt} PROPERTY SOVERSION 1) | ||
set_property(TARGET ${tgt} PROPERTY | ||
OUTPUT_NAME ${tgt}-${ELASTIX_VERSION_MAJOR}.${ELASTIX_VERSION_MINOR}) | ||
endif() | ||
|
||
export(TARGETS ${tgt} | ||
APPEND FILE "${CMAKE_BINARY_DIR}/ElastixTargets.cmake" | ||
) | ||
endfunction() |
File renamed without changes.
Oops, something went wrong.