File: CMakeLists.txt

package info (click to toggle)
freespace2 24.0.2%2Brepack-1
  • links: PTS, VCS
  • area: non-free
  • in suites: trixie
  • size: 43,188 kB
  • sloc: cpp: 583,107; ansic: 21,729; python: 1,174; sh: 464; makefile: 248; xml: 181
file content (14 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

SET(MD5_SOURCES
        md5.cpp
        md5.h)

ADD_LIBRARY(md5 STATIC ${MD5_SOURCES})

target_include_directories(md5 SYSTEM PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}")

# Disable warnings if building from source
suppress_warnings(md5)

set_target_properties(md5 PROPERTIES FOLDER "3rdparty")
target_link_libraries(md5 PUBLIC compiler)