-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
33 lines (26 loc) · 800 Bytes
/
CMakeLists.txt
File metadata and controls
33 lines (26 loc) · 800 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
30
31
32
# File: CMakeLists.txt
# Author: Marvin Smith
# Date: 4/25/2015
#
# Purpose: Build the Project Euler Solutions.
#
#---------------------------#
#- Set CMake Version -#
#---------------------------#
cmake_minimum_required( VERSION 2.8 FATAL_ERROR )
#-----------------------------#
#- Cmake Build Options -#
#-----------------------------#
set( CMAKE_CXX_FLAGS "-O3" )
#-------------------------#
#- Project Name -#
#-------------------------#
#project( Project-Euler-Solutions )
#--------------------------------#
#- Add C++ Code Samples -#
#--------------------------------#
add_subdirectory( cpp )
#------------------------------------#
#- Add Fortran Code Samples -#
#------------------------------------#
add_subdirectory( fortran )