Skip to content

Commit

Permalink
Issue #37: using architecture-specific suffix in built library names
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhoshkun committed Apr 8, 2019
1 parent 8b344d1 commit d6b9c7f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ if (${USE_EPIPHAN})
)

string(CONCAT FILE_SUFFIX ${FILE_SUFFIX} "-epi")

if(${CMAKE_GENERATOR_PLATFORM} MATCHES "x64")
string(CONCAT FILE_SUFFIX ${FILE_SUFFIX} "-64bit")
else()
string(CONCAT FILE_SUFFIX ${FILE_SUFFIX} "-32bit")
endif()
endif()

# Set build parts
Expand Down

0 comments on commit d6b9c7f

Please sign in to comment.