You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
752 B

9 years ago
CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0)
PROJECT (LINECOUNT)
9 years ago
IF(MSVC)
SET(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "limited configs" FORCE)
SET(CMAKE_CXX_FLAGS_RELEASE "/Ox /Ob2")
SET(CMAKE_C_FLAGS_RELEASE "/Ox /Ob2")
ELSE()
SET(CMAKE_CXX_FLAGS_RELEASE "/O3")
SET(CMAKE_C_FLAGS_RELEASE "-O3")
SET(CMAKE_EXE_LINKER_FLAGS "-s")
ENDIF()
9 years ago
ADD_LIBRARY (linecount SHARED linecount.cpp linecount.h)
ADD_LIBRARY (linecount_static STATIC linecount.cpp linecount.h)
ADD_EXECUTABLE (lc main.cpp)
TARGET_LINK_LIBRARIES (lc linecount_static)
9 years ago
INSTALL(TARGETS lc
DESTINATION "bin"
)
9 years ago
INSTALL(TARGETS linecount linecount_static
DESTINATION "lib"
)
9 years ago
INSTALL(FILES linecount.h
DESTINATION "include"
)