blob: a9ef936a8095fa2befafff3ddf5c3d8d7dc10c01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#################################################
#
# (C) 2010 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
include_directories(
${CMAKE_BINARY_DIR}
)
##### isofs-static ##############################
set( target isofs )
tde_add_library( ${target} STATIC_PIC
SOURCES isofs.c
)
|