ef144a7f9d
Always build ITGmania with Minimaid There's no harm in always having this built as it's configurable based on the LightsDriver field. Update mmmagic.dll -> mmmagic64.dll to conform with the new dll filename Also fix PacDrive.h header
10 lines
305 B
CMake
10 lines
305 B
CMake
if(LINUX)
|
|
if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64")
|
|
list(APPEND SMDATA_LINK_LIB
|
|
"${SM_EXTERN_DIR}/libmmmagic/linux-64bit/libmmmagic.a" "udev")
|
|
else()
|
|
list(APPEND SMDATA_LINK_LIB
|
|
"${SM_EXTERN_DIR}/libmmmagic/linux-32bit/libmmmagic.a" "udev")
|
|
endif()
|
|
endif()
|