Page tree
Skip to end of metadata
Go to start of metadata
cmake_minimum_required(VERSION 3.0)
project(cpython)

file(GLOB SOURCE_FILES
Programs/*.c
Python/*.c
Parser/*.c
Objects/*.c
Modules/*.c)

include_directories(.)
include_directories(Include)

add_executable(python.exe ${SOURCE_FILES})



  • No labels
Write a comment...