1
0
mirror of https://github.com/fumiama/CMoe-Counter.git synced 2026-06-05 02:00:24 +08:00
Files
CMoe-Counter/CMakeLists.txt
2024-04-12 22:55:42 +09:00

24 lines
600 B
CMake

cmake_minimum_required(VERSION 2.6)
project(CMoe-Counter C)
SET(CMAKE_BUILD_TYPE "Release")
include_directories("/usr/local/include")
link_directories("/usr/local/lib")
if (BUILD NOT STREQUAL "docker")
#在编译选项中加入c99支持
add_compile_options(-std=c99)
message(STATUS "optional:-std=c99")
endif ()
add_executable(cmoe cmoe.c)
add_executable(cmoeditor editor.c)
target_link_libraries(cmoe spb)
target_link_libraries(cmoeditor spb)
if (BUILD STREQUAL "docker")
INSTALL(TARGETS cmoe RUNTIME DESTINATION bin)
endif ()
INSTALL(TARGETS cmoeditor RUNTIME DESTINATION bin)