12 lines
227 B
CMake
12 lines
227 B
CMake
cmake_minimum_required(VERSION 4.0.0)
|
|
project(cjs-lite)
|
|
|
|
add_executable(app app.c)
|
|
|
|
# Set specific executable flags
|
|
target_link_options(app PRIVATE
|
|
-Wl,--no-entry
|
|
-Wl,--no-growable-memory
|
|
-Wl,--initial-memory=536870912
|
|
)
|