mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 00:24:13 +08:00
11 lines
548 B
CMake
11 lines
548 B
CMake
|
|
if(BUILD_GUI)
|
|
add_executable(LunaHost WIN32 confighelper.cpp controls.cpp main.cpp processlistwindow.cpp LunaHost.cpp window.cpp luna.rc pluginmanager.cpp Plugin/extensionimpl.cpp Plugin/copyclipboard.cpp QtLoader_inline.cpp app.manifest ${versioninfohost})
|
|
target_precompile_headers(LunaHost REUSE_FROM pch)
|
|
set_target_properties(LunaHost PROPERTIES OUTPUT_NAME "LunaHost${bitappendix}")
|
|
target_link_libraries(LunaHost comctl32 winhttp version pch host ${YY_Thunks_for_WinXP} nlohmann)
|
|
endif()
|
|
|
|
if(BUILD_PLUGIN)
|
|
add_subdirectory(Plugin)
|
|
endif() |