Make UNIX builds non-portable by default.

This commit is contained in:
Nadia Holmquist Pedersen
2019-12-05 00:12:40 +01:00
parent 4f87707cda
commit 03f33fa5c3

View File

@ -31,7 +31,7 @@ target_link_libraries(melonDS
core ${SDL2_LIBRARIES} libui)
if (UNIX)
option(UNIX_PORTABLE "Make a portable build that looks for its configuration in the current directory" ON)
option(UNIX_PORTABLE "Make a portable build that looks for its configuration in the current directory" OFF)
if (UNIX_PORTABLE)
add_definitions(-DUNIX_PORTABLE)
endif()