1
0
mirror of https://github.com/fumiama/CMoe-Counter.git synced 2026-06-05 02:00:24 +08:00
This commit is contained in:
源文雨
2021-06-07 21:18:19 +08:00
parent af031718a4
commit 2c537be0ad
58 changed files with 523 additions and 0 deletions

12
CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
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")
add_executable(cmoe cmoe.c)
target_link_libraries(cmoe spb)
INSTALL(TARGETS cmoe RUNTIME DESTINATION bin)