10 lines
185 B
CMake
10 lines
185 B
CMake
set(SRC_FILES
|
|
"Src/Imp/CPP/Main.cpp"
|
|
)
|
|
|
|
add_executable(Editor ${SRC_FILES})
|
|
|
|
target_include_directories(Editor PRIVATE "Src/Imp/HPP")
|
|
|
|
target_link_libraries(Editor PUBLIC IAEngine)
|