-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
47 lines (43 loc) · 1.86 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
# Minimum CMake support, to help Code Completing IDEs
cmake_minimum_required(VERSION 3.10)
project(pitools C)
include_directories(
/u/ZX/z88dk/include/_DEVELOPMENT/sccz80
src/inc
)
add_executable(piget
src/piget.c
src/inc/zxn.h
src/inc/help.h src/lib/help.c
src/inc/piSupReset.h src/lib/piSupReset.c
src/inc/piUartSwitch.h src/lib/piUartSwitch.c
src/inc/uartDrain.h src/lib/uartDrain.c
src/inc/uartGetChr.h src/lib/uartGetChr.c
src/inc/uartSendChr.h src/lib/uartSendChr.c
src/inc/uartSendCmd.h src/lib/uartSendCmd.c
src/inc/uartSendStr.h src/lib/uartSendStr.c
src/inc/uartSetBaud.h src/lib/uartSetBaud.c
src/inc/uartWaitOK.h src/lib/uartWaitOK.c
src/inc/uartWaitStr.h src/lib/uartWaitStr.c
src/inc/spuiDrawTriangle.h src/lib/spuiDrawTriangle.c src/lib/nbnGetHeader.c src/inc/nbnGetHeader.h src/lib/nbnReceiveBlock.c src/inc/nbnReceiveBlock.h src/inc/nbn.h)
add_executable(piput
src/piput.c
src/inc/zxn.h
src/inc/help.h src/lib/help.c
src/inc/piSupReset.h src/lib/piSupReset.c
src/inc/piUartSwitch.h src/lib/piUartSwitch.c
src/inc/uartDrain.h src/lib/uartDrain.c
src/inc/uartGetChr.h src/lib/uartGetChr.c
src/inc/uartSendChr.h src/lib/uartSendChr.c
src/inc/uartSendCmd.h src/lib/uartSendCmd.c
src/inc/uartSendStr.h src/lib/uartSendStr.c
src/inc/uartSetBaud.h src/lib/uartSetBaud.c
src/inc/uartWaitOK.h src/lib/uartWaitOK.c
src/inc/uartWaitStr.h src/lib/uartWaitStr.c
src/inc/nbnSendHeader.h src/lib/nbnSendHeader.c
src/inc/nbnSendBlock.h src/lib/nbnSendBlock.c
src/inc/spuiDrawTriangle.h src/lib/spuiDrawTriangle.c src/inc/nbn.h)
add_executable(crc32
src/crc32.c
src/lib/help.c src/inc/help.h
src/lib/crc32.c src/inc/crc32.h)