Fix prefix
parent
bf012e6390
commit
1af9715dec
|
@ -265,10 +265,6 @@ target_compile_definitions(${LIB_STEAM_API}
|
||||||
# Setup for the steamclient(64).dll / libsteamclient.so?
|
# Setup for the steamclient(64).dll / libsteamclient.so?
|
||||||
########################################################
|
########################################################
|
||||||
|
|
||||||
if(UNIX)
|
|
||||||
SET_TARGET_PROPERTIES(${LIB_STEAMCLIENT} PROPERTIES PREFIX "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Setup the target
|
# Setup the target
|
||||||
add_library(${LIB_STEAMCLIENT}
|
add_library(${LIB_STEAMCLIENT}
|
||||||
SHARED
|
SHARED
|
||||||
|
@ -279,6 +275,10 @@ add_library(${LIB_STEAMCLIENT}
|
||||||
${PROTO_HDRS}
|
${PROTO_HDRS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(UNIX)
|
||||||
|
SET_TARGET_PROPERTIES(${LIB_STEAMCLIENT} PROPERTIES PREFIX "")
|
||||||
|
endif()
|
||||||
|
|
||||||
# Include the required directories
|
# Include the required directories
|
||||||
target_include_directories(
|
target_include_directories(
|
||||||
${LIB_STEAMCLIENT}
|
${LIB_STEAMCLIENT}
|
||||||
|
|
Loading…
Reference in New Issue