Kaynağa Gözat

add makefile to support multiple C files (#1195)

* tcc-based vscode project for windows

Signed-off-by: misterpah <misterpah@gmail.com>

* add makefile to support multiple C files
pull/1197/head
pah arif 5 yıl önce
işlemeyi yapan: GitHub
ebeveyn
işleme
b4af1b2cc0
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
3 değiştirilmiş dosya ile 21 ekleme ve 1 silme
  1. +4
    -1
      projects/VSCode_tcc_win/.vscode/tasks.json
  2. +12
    -0
      projects/VSCode_tcc_win/Makefile
  3. +5
    -0
      projects/VSCode_tcc_win/README.md

+ 4
- 1
projects/VSCode_tcc_win/.vscode/tasks.json Dosyayı Görüntüle

@ -16,7 +16,10 @@
{
"label": "build & run",
"type": "shell",
"command": "tcc.exe ${workspaceFolder}\\${fileBasename} -o ${workspaceFolder}\\${fileBasenameNoExtension}.exe -std=c99 -Wall -lmsvcrt -lraylib -lopengl32 -lgdi32 -lkernel32 -lshell32 -luser32 -lwinmm -Wl,-subsystem=gui && ${fileBasenameNoExtension}.exe",
"command": "make.exe all workplaceFolder=${workspaceFolder} outputExe=${workspaceFolderBasename}.exe",
"args":[
"&& ${workspaceFolderBasename}.exe",
],
"options": {
"env":{
"PATH" : "C:\\raylib\\tcc\\;%PATH%"

+ 12
- 0
projects/VSCode_tcc_win/Makefile Dosyayı Görüntüle

@ -0,0 +1,12 @@
MAIN_CFILE = main.c
SUPPORT_CFILES =
#**************************************************************************************************
# raylib makefile for TCC
#**************************************************************************************************
CC = tcc
CFLAGS = -vv -std=c99 -Wall -lmsvcrt -lraylib -lopengl32 -lgdi32 -lkernel32 -lshell32 -luser32 -lwinmm -Wl,-subsystem=gui
OUTPUT = $(outputExe)
all:
$(CC) -o $(OUTPUT) $(MAIN_CFILE) $(SUPPORT_CFILES) $(CFLAGS)

+ 5
- 0
projects/VSCode_tcc_win/README.md Dosyayı Görüntüle

@ -0,0 +1,5 @@
How to use
1. Rename Folder
2. open workspace (main.code-workspace)
3. edit Makefile to include your files
4. F5 and choose "build & run"

Yükleniyor…
İptal
Kaydet