forked from justinmeza/lci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
59 lines (52 loc) · 1.26 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
56
57
58
59
cmake_minimum_required(VERSION 2.8)
project(lci)
ENABLE_TESTING()
SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake )
SET(PERFORM_MEM_TESTS FALSE CACHE BOOL "Whether or not to enable memory testing")
MARK_AS_ADVANCED(PERFORM_MEM_TESTS)
IF(${PERFORM_MEM_TESTS})
find_program(VALGRIND valgrind)
IF(NOT VALGRIND)
message(FATAL_ERROR
"
Error: You've enabled memory testing but we can't find valgrind
Try one of the following:
1: Make sure valgrind is in your PATH
2: Install valgrind if you already haven't
3: Disable memory testing
")
ENDIF(NOT VALGRIND)
ENDIF(${PERFORM_MEM_TESTS})
SET(HDRS
interpreter.h
lexer.h
parser.h
tokenizer.h
unicode.h
)
SET(SRCS
interpreter.c
lexer.c
main.c
parser.c
tokenizer.c
unicode.c
)
add_executable(lci ${SRCS} ${HDRS})
target_link_libraries(lci m)
add_subdirectory(test)
install(
TARGETS lci
RUNTIME DESTINATION bin
)
find_package(Doxygen)
if(DOXYGEN_FOUND)
add_custom_target(docs
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen" VERBATIM
)
else(DOXYGEN_FOUND)
message(WARNING
"Couldn't find doxygen. You won't be able to generate documentation now")
endif(DOXYGEN_FOUND)