File: CMakeLists.txt

package info (click to toggle)
tercpp 0.6.2%2Bsvn46-1.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 548 kB
  • ctags: 401
  • sloc: cpp: 4,279; makefile: 24; sh: 6
file content (18 lines) | stat: -rwxr-xr-x 462 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PROJECT(tercpp)


include_directories(BEFORE ${CMAKE_SOURCE_DIR}/src)

SET(tercpp_SRCS
   main.cpp
)

add_executable(tercpp.0.6.2 ${tercpp_SRCS})
SET_TARGET_PROPERTIES(tercpp.0.6.2 PROPERTIES OUTPUT_NAME tercpp)
TARGET_LINK_LIBRARIES(tercpp.0.6.2 tercpp)

#target_link_libraries(tercpp hashMapStringInfos tercalc hashMapInfos)
# target_link_libraries(tercpp tercalc xmlStructure documentStructure multiEvaluation)

install(TARGETS tercpp.0.6.2 DESTINATION bin)