2015-10-04 14:42:45 +02:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
project(CmdLineOptions)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS "--std=c++14 -g -Wall")
|
|
|
|
add_library(CmdLineOptions_static STATIC CmdLineOptions.cpp)
|
|
|
|
add_library(CmdLineOptions SHARED CmdLineOptions.cpp)
|
2016-04-18 17:58:45 +02:00
|
|
|
|
|
|
|
#add_executable(CmdLineOptions_test CmdLineOptions_test.cpp)
|