mirror of
https://github.com/fumiama/CMoe-Counter.git
synced 2024-11-28 07:30:48 +01:00
13 lines
279 B
CMake
13 lines
279 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")
|
||
|
|
||
|
add_executable(cmoe cmoe.c)
|
||
|
|
||
|
target_link_libraries(cmoe spb)
|
||
|
|
||
|
INSTALL(TARGETS cmoe RUNTIME DESTINATION bin)
|