Skip to content

Commit

Permalink
cmake: don`t use linker map on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusBgm committed Nov 8, 2024
1 parent 9bd7945 commit c1bca27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SilKit/source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ if (MSVC)
PDB_OUTPUT_DIRECTORY_DEBUG ${SILKIT_SYMBOLS_DIR}/Debug
LINK_FLAGS "/DEBUG" #make sure the resulting .dll has a .pdb file
)
elseif(UNIX AND NOT APPLE)
elseif(UNIX AND NOT APPLE AND NOT (CMAKE_SYSTEM_NAME MATCHES Android))
#for reproducible builds
if(SILKIT_BUILD_REPRODUCIBLE)
target_link_options(SilKit
Expand Down

0 comments on commit c1bca27

Please sign in to comment.