-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Roland Guichard
committed
Mar 19, 2015
1 parent
83fef35
commit 677d10e
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# CMakeLists.txt for big_bath | ||
# Dr. Roland Guichard 09/03/2015 | ||
|
||
cmake_minimum_required(VERSION 2.6) | ||
|
||
#### Initialize ################################ | ||
|
||
# Language | ||
enable_language (Fortran) | ||
|
||
# Project name | ||
project (Big_Bath) | ||
set_property(TARGET PROPERTY PROJECT_LABEL ${PROJECT_NAME}) | ||
|
||
# Build type | ||
set(CMAKE_BUILD_TYPE Release) | ||
|
||
#### Packages ################################## | ||
|
||
#### Library and executables ################### | ||
|
||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ../bin/) | ||
set(main-source_SRC | ||
src/big_bath.f90 | ||
include/types.f90 | ||
include/constants.f90 | ||
include/read.f90 | ||
include/write.f90 | ||
library/generate.f90 | ||
library/interactions.f90 | ||
) | ||
|
||
add_executable(big_bath.exe ${main-source_SRC}) | ||
|
||
set(CMAKE_Fortran_FLAGS "-warn all -check all -traceback -prof-gen=srcpos -align array64byte -fast -parallel -par-report0 ${CMAKE_Fortran_FLAGS}") |