-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
30 lines (22 loc) · 767 Bytes
/
CMakeLists.txt
File metadata and controls
30 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File: CMakeLists.txt
# Author: Marvin Smith
# Date: 5/20/2015
#
# Purpose: Constructs the CLI-CPP Project
#
#----------------------------------------#
#- Set the CMake Version -#
#----------------------------------------#
cmake_minimum_required( VERSION 2.8 FATAL_ERROR )
#----------------------------------------#
#- Set the Project Name -#
#----------------------------------------#
project(libcli-cpp)
#------------------------------------#
#- Add the Source Directory -#
#------------------------------------#
add_subdirectory( src )
#-------------------------------------#
#- Configure the RPM Builder -#
#-------------------------------------#
include( cmake/Scripts/BuildRPM.cmake )