aboutsummaryrefslogtreecommitdiff
path: root/src/apps/bin_gie.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'src/apps/bin_gie.cmake')
-rw-r--r--src/apps/bin_gie.cmake16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/apps/bin_gie.cmake b/src/apps/bin_gie.cmake
new file mode 100644
index 00000000..8e2d2278
--- /dev/null
+++ b/src/apps/bin_gie.cmake
@@ -0,0 +1,16 @@
+set(GIE_SRC
+ gie.cpp
+ proj_strtod.cpp
+ proj_strtod.h
+)
+set(GIE_INCLUDE optargpm.h)
+
+source_group("Source Files\\Bin" FILES ${GIE_SRC})
+
+add_executable(gie ${GIE_SRC} ${GIE_INCLUDE})
+target_link_libraries(gie PRIVATE ${PROJ_LIBRARIES})
+
+if(BUILD_GIE)
+ install(TARGETS gie
+ DESTINATION ${BINDIR})
+endif()