1 Star 0 Fork 0

wolf/PyStand

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 915 Bytes
一键复制 编辑 原始数据 按行查看 历史
cmake_minimum_required(VERSION 3.5)
project (PyStand LANGUAGES CXX RC)
option(PYSTAND_CONSOLE "Build PyStand as a console application." OFF)
# sources
set(sources
PyStand.cpp
resource.rc
)
if (PYSTAND_CONSOLE)
add_executable(PyStand ${sources})
target_compile_definitions(PyStand PRIVATE PYSTAND_CONSOLE)
else()
add_executable(PyStand WIN32 ${sources})
endif()
# static link
if (CMAKE_GENERATOR MATCHES "Visual Studio")
set(CMAKE_FIND_LIBRARY_SUFFIXES ".lib")
target_compile_options(PyStand
PUBLIC
$<$<CONFIG:Debug>:/MTd>
$<$<CONFIG:Release>:/MT>
$<$<CONFIG:MinSizeRel>:/MT>
)
target_link_options(PyStand PUBLIC /INCREMENTAL:NO /NODEFAULTLIB:MSVCRT)
else()
# for mingw
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS_RELEASE} -s")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS_RELEASE} -s")
target_link_libraries(PyStand
-static
shlwapi
winmm
)
endif()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wooolf/PyStand.git
git@gitee.com:wooolf/PyStand.git
wooolf
PyStand
PyStand
master

搜索帮助