diff --git a/Applications/CMakeLists.txt b/Applications/CMakeLists.txt index 8680c4545e97d10e39a2fa147cb448b1f3391441..b35719aaa4bc5e08045c369a215d99460d2410aa 100644 --- a/Applications/CMakeLists.txt +++ b/Applications/CMakeLists.txt @@ -14,6 +14,7 @@ add_subdirectory(Hyperspectral) add_subdirectory(Projections) add_subdirectory(RadiometricIndices) add_subdirectory(Radiometry) +add_subdirectory(Rasterization) add_subdirectory(Segmentation) add_subdirectory(Test) add_subdirectory(Utils) diff --git a/Applications/Rasterization/CMakeLists.txt b/Applications/Rasterization/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cbd97156e31a46c3a29e5fbc60d6d7d80bb7c34 --- /dev/null +++ b/Applications/Rasterization/CMakeLists.txt @@ -0,0 +1,4 @@ + +OTB_CREATE_APPLICATION(NAME Rasterization + SOURCES otbRasterization.cxx + LINK_LIBRARIES OTBBasicFilters)