-
Notifications
You must be signed in to change notification settings - Fork 9
/
CMakeLists.txt
55 lines (53 loc) · 1.28 KB
/
CMakeLists.txt
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
cmake_minimum_required(VERSION 3.12)
project(xrotor Fortran)
#project(xrotor_exec Fortran)
#project(xrotor_test Fortran)
enable_language(Fortran)
add_library(xrotor SHARED
src/i_common.f90
src/m_spline.f90
src/m_userio.f90
src/m_vortex.f90
src/m_xaero.f90
src/m_xbend.f90
src/m_xio.f90
src/m_xnoise.f90
src/m_xoper.f90
src/m_xrotor.f90
src/m_xutils.f90
src/s_xrotor.f90
src/api.f90)
#add_executable(xrotor_exec
# src/i_common.f90
# src/m_spline.f90
# src/m_userio.f90
# src/m_vortex.f90
# src/m_xaero.f90
# src/m_xbend.f90
# src/m_xio.f90
# src/m_xnoise.f90
# src/m_xoper.f90
# src/m_xrotor.f90
# src/m_xutils.f90
# src/s_xrotor.f90
# src/p_xbend.f90
# src/p_xnoise.f90
# src/p_xoper.f90
# src/p_xrotor.f90)
#
#
#add_executable(xrotor_test
# src/i_common.f90
# src/m_spline.f90
# src/m_userio.f90
# src/m_vortex.f90
# src/m_xaero.f90
# src/m_xbend.f90
# src/m_xio.f90
# src/m_xnoise.f90
# src/m_xoper.f90
# src/m_xrotor.f90
# src/m_xutils.f90
# src/s_xrotor.f90
# src/api.f90
# src/p_test.f90)