0

How to force proj4 to build proj.dll instead of proj_4_9.dll including version using cmake?

I tried to

set(OUTPUT_NAME "proj" CACHE STRING "")
set(PROJ_CORE_TARGET "proj" CACHE STRING "")
set(PROJ_CORE_TARGET_OUTPUT_NAME "proj" CACHE STRING "")

to manually override this. However... did not work.

Beachwalker
  • 7,685
  • 6
  • 52
  • 94

1 Answers1

1

You can set the name of a target like so:

set_target_properties(proj_4_9 PROPERTIES 
  OUTPUT_NAME "proj")
utopia
  • 1,477
  • 8
  • 7