blob: 497315f90469c26a9d1d6ef6b102043c2d5d7a50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
set(GIE_SRC apps/gie.cpp
apps/proj_strtod.cpp
apps/proj_strtod.h)
set(GIE_INCLUDE apps/optargpm.h)
source_group("Source Files\\Bin" FILES ${GIE_SRC})
add_executable(gie ${GIE_SRC} ${GIE_INCLUDE})
target_link_libraries(gie ${PROJ_LIBRARIES})
install(TARGETS gie
RUNTIME DESTINATION ${BINDIR})
if(MSVC AND BUILD_LIBPROJ_SHARED)
target_compile_definitions(gie PRIVATE PROJ_MSVC_DLL_IMPORT=1)
endif()
|