13 lines
233 B
CMake
13 lines
233 B
CMake
add_executable(ModulithEditor)
|
|
|
|
target_sources(ModulithEditor
|
|
PRIVATE
|
|
"src/main.cpp"
|
|
)
|
|
|
|
target_link_libraries(ModulithEditor
|
|
PRIVATE
|
|
ModulithEngine
|
|
)
|
|
|
|
target_compile_features(ModulithEditor PRIVATE cxx_std_20) |