forked from InsightSoftwareConsortium/ITK
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'upstream-VXL' into update-vxl-20241227
* upstream-VXL: VXL 2024-12-27 (b852f514)
- Loading branch information
Showing
499 changed files
with
20,732 additions
and
13,005 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,4 +72,3 @@ else() | |
endif () | ||
endif() | ||
endif() | ||
|
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 |
---|---|---|
|
@@ -26,8 +26,3 @@ if(APPLE AND DC1394_FOUND) | |
"-framework CoreServices" | ||
"-framework IOKit" ) | ||
endif() | ||
|
||
|
||
|
||
|
||
|
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 |
---|---|---|
|
@@ -30,4 +30,3 @@ if(GEOTIFF_INCLUDE_DIR) | |
set( GEOTIFF_LIBRARIES ${GEOTIFF_LIBRARY} ) | ||
endif() | ||
endif() | ||
|
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 |
---|---|---|
|
@@ -72,4 +72,3 @@ endif() | |
if(SIMVOLEON_LIBRARY) | ||
set( SIMVOLEON_FOUND "YES" ) | ||
endif() | ||
|
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 |
---|---|---|
|
@@ -52,5 +52,3 @@ if( WIN32 ) | |
) | ||
|
||
endif() | ||
|
||
|
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 |
---|---|---|
|
@@ -17,5 +17,3 @@ If you are adding some new functionality to VXL and you need a third party libra | |
that VXL can depend on this additional library) then you can temporarily add the file to the NewCMake subdirectory. | ||
Please also submit it to CMake at [email protected], and delete it from the VXL repository when the next | ||
version of CMake is widely available. | ||
|
||
|
19 changes: 10 additions & 9 deletions
19
Modules/ThirdParty/VNL/src/vxl/config/cmake/config/vxlGetCXXCompilerVersion.cxx
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,13 +1,14 @@ | ||
#include <iostream> | ||
|
||
int main() | ||
int | ||
main() | ||
{ | ||
#if __cplusplus >= VXL_CXX_TEST_VERSION | ||
std::cout << __cplusplus << ">=" << VXL_CXX_TEST_VERSION << std::endl; | ||
return 0; | ||
#else | ||
#error "VERSION TEST FAILED" VXL_CXX_TEST_VERSION | ||
std::cout << __cplusplus << ">=" << VXL_CXX_TEST_VERSION << std::endl; | ||
return 1; | ||
#endif | ||
#if __cplusplus >= VXL_CXX_TEST_VERSION | ||
std::cout << __cplusplus << ">=" << VXL_CXX_TEST_VERSION << std::endl; | ||
return 0; | ||
#else | ||
# error "VERSION TEST FAILED" VXL_CXX_TEST_VERSION | ||
std::cout << __cplusplus << ">=" << VXL_CXX_TEST_VERSION << std::endl; | ||
return 1; | ||
#endif | ||
} |
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
6 changes: 4 additions & 2 deletions
6
Modules/ThirdParty/VNL/src/vxl/config/cmake/config/vxl_shared_link_test/shared_src.cxx
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,7 +1,9 @@ | ||
|
||
void vxl_static_test_function(int i); | ||
void | ||
vxl_static_test_function(int i); | ||
|
||
void vxl_shared_test_function(int i) | ||
void | ||
vxl_shared_test_function(int i) | ||
{ | ||
vxl_static_test_function(i); | ||
} |
6 changes: 3 additions & 3 deletions
6
Modules/ThirdParty/VNL/src/vxl/config/cmake/config/vxl_shared_link_test/static_src.cxx
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,4 +1,4 @@ | ||
|
||
void vxl_static_test_function(int i) | ||
{ | ||
} | ||
void | ||
vxl_static_test_function(int i) | ||
{} |
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 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
Oops, something went wrong.