Skip to content

Commit

Permalink
Unwine is a console app.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed May 29, 2024
1 parent e381bcc commit d5db517
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,17 @@ target_include_directories(untwine
${PDAL_INCLUDE_DIRS}
${PROJECT_SOURCE_DIR}
)

target_link_libraries(untwine
PRIVATE
${CMAKE_THREAD_LIBS_INIT}
${PDAL_LIBRARIES}
)

if (MSVC)
target_link_options(untwine
PRIVATE
/SUBSYSTEM:WINDOWS /ENTRY:wmainCRTStartup
/SUBSYSTEM:CONSOLE /ENTRY:wmainCRTStartup
)
endif()

Expand Down
1 change: 0 additions & 1 deletion epf/Epf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ void Epf::run(ProgressWriter& progress)
determineOffset(fileInfos);
m_b.srs = determineSrs(fileInfos);


// Setup grid and point count. For each file info the N x N x N grid is expanded to
// hold all the points. If the number of points seems too large, N is expanded to N + 1.
// The correct N is often wrong, especially for some areas where things are more dense.
Expand Down

0 comments on commit d5db517

Please sign in to comment.