1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 21:49:55 +00:00

rename openmw-netlauncher to tes3mp-netlauncher

This commit is contained in:
Koncord 2017-01-12 08:54:11 +08:00
parent 4604ee49bf
commit 90908ed113
2 changed files with 8 additions and 8 deletions

View file

@ -69,7 +69,7 @@ option(BUILD_OPENMW_MP "build OpenMW-MP" ON)
option(BUILD_BSATOOL "build BSA extractor" ON) option(BUILD_BSATOOL "build BSA extractor" ON)
option(BUILD_ESMTOOL "build ESM inspector" ON) option(BUILD_ESMTOOL "build ESM inspector" ON)
option(BUILD_LAUNCHER "build Launcher" ON) option(BUILD_LAUNCHER "build Launcher" ON)
option(BUILD_NETLAUNCHER "build Launcher" ON) option(BUILD_NETLAUNCHER "build tes3mp Launcher" ON)
option(BUILD_MWINIIMPORTER "build MWiniImporter" ON) option(BUILD_MWINIIMPORTER "build MWiniImporter" ON)
option(BUILD_ESSIMPORTER "build ESS (Morrowind save game) importer" ON) option(BUILD_ESSIMPORTER "build ESS (Morrowind save game) importer" ON)
option(BUILD_OPENCS "build OpenMW Construction Set" ON) option(BUILD_OPENCS "build OpenMW Construction Set" ON)

View file

@ -56,7 +56,7 @@ if(NOT WIN32)
endif(NOT WIN32) endif(NOT WIN32)
# Main executable # Main executable
add_executable(openmw-netlauncher add_executable(tes3mp-netlauncher
${GUI_TYPE} ${GUI_TYPE}
${NETLAUNCHER} ${NETLAUNCHER}
${NETLAUNCHER_HEADER} ${NETLAUNCHER_HEADER}
@ -66,25 +66,25 @@ add_executable(openmw-netlauncher
) )
if (WIN32) if (WIN32)
INSTALL(TARGETS openmw-netlauncher RUNTIME DESTINATION ".") INSTALL(TARGETS tes3mp-netlauncher RUNTIME DESTINATION ".")
endif (WIN32) endif (WIN32)
target_link_libraries(openmw-netlauncher target_link_libraries(tes3mp-netlauncher
${SDL2_LIBRARY_ONLY} ${SDL2_LIBRARY_ONLY}
${RakNet_LIBRARY} ${RakNet_LIBRARY}
components components
) )
if (DESIRED_QT_VERSION MATCHES 4) if (DESIRED_QT_VERSION MATCHES 4)
# target_link_libraries(openmw-netlauncher ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY}) # target_link_libraries(tes3mp-netlauncher ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY})
# if(WIN32) # if(WIN32)
# target_link_libraries(openmw-netlauncher ${QT_QTMAIN_LIBRARY}) # target_link_libraries(tes3mp-netlauncher ${QT_QTMAIN_LIBRARY})
# endif(WIN32) # endif(WIN32)
else() else()
qt5_use_modules(openmw-netlauncher Widgets Core) qt5_use_modules(tes3mp-netlauncher Widgets Core)
endif() endif()
if (BUILD_WITH_CODE_COVERAGE) if (BUILD_WITH_CODE_COVERAGE)
add_definitions (--coverage) add_definitions (--coverage)
target_link_libraries(openmw-netlauncher gcov) target_link_libraries(tes3mp-netlauncher gcov)
endif() endif()