13 lines
231 B
CMake
13 lines
231 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) |