File: CMakeLists.txt

package info (click to toggle)
solvespace 2.3%2Brepack1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,620 kB
  • ctags: 4,853
  • sloc: cpp: 111,351; ansic: 493; xml: 22; sh: 12; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
include_directories(
    ${PNG_INCLUDE_DIRS})

link_directories(
    ${PNG_LIBRARY_DIRS})

add_executable(png2c
    png2c.cpp)

target_link_libraries(png2c
    ${PNG_LIBRARIES})

add_executable(unifont2c
    unifont2c.cpp)

target_link_libraries(unifont2c
    ${PNG_LIBRARIES} ${ZLIB_LIBRARIES})

add_executable(lff2c
    lff2c.cpp)

target_link_libraries(lff2c
    ${ZLIB_LIBRARIES})