File: CMakeLists.txt

package info (click to toggle)
gringo 3.0.4-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,116 kB
  • sloc: cpp: 45,083; ansic: 4,368; yacc: 477; makefile: 194; python: 22
file content (9 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
file(GLOB_RECURSE LIBPROGRAM_OPTS_SRC src/*.cpp *.h)

include_directories(src .)

add_library(program_opts-lib STATIC ${LIBPROGRAM_OPTS_SRC})

target_link_libraries(program_opts-lib)
set_target_properties(program_opts-lib PROPERTIES OUTPUT_NAME program_opts)