Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/post/src/objects/CMakeLists.txt
3204 views
1
2
########### next target ###############
3
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
4
5
SET(objects_STAT_SRCS
6
objects.c
7
objects.h
8
transformations.c
9
)
10
11
add_library(objects STATIC ${objects_STAT_SRCS})
12
13
14
########### install files ###############
15
16
17
18
19
#original Makefile.am contents follow:
20
21
#noinst_LIBRARIES=libobjects.a
22
#
23
#libobjects_a_SOURCES=\
24
# objects.c \
25
# objects.h \
26
# transformations.c
27
28