mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
CMake: Remove unneeded PREFIX setting for executables
This commit is contained in:
parent
11750e8273
commit
5b6fdb2bde
1 changed files with 0 additions and 2 deletions
|
@ -416,7 +416,6 @@ target_link_libraries(game ${yquake2LinkerFlags})
|
|||
# Main Quake 2 executable
|
||||
add_executable(quake2 ${Client-Source} ${Client-Header} ${Platform-Specific-Source} ${Backends-Generic-Source} ${Backends-Generic-Header})
|
||||
set_target_properties(quake2 PROPERTIES
|
||||
PREFIX ""
|
||||
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/release
|
||||
)
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
||||
|
@ -428,7 +427,6 @@ endif()
|
|||
# Quake 2 Dedicated Server
|
||||
add_executable(q2ded ${Server-Source} ${Server-Header} ${Platform-Specific-Source})
|
||||
set_target_properties(q2ded PROPERTIES
|
||||
PREFIX ""
|
||||
COMPILE_DEFINITIONS "DEDICATED_ONLY"
|
||||
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/release
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue