10 lines
190 B
CMake
10 lines
190 B
CMake
set(SRC_FILES
|
|
"imp/cpp/Main.cpp"
|
|
)
|
|
|
|
add_executable(IAE_Editor ${SRC_FILES})
|
|
|
|
target_include_directories(IAE_Editor PRIVATE imp/hpp)
|
|
|
|
target_link_libraries(IAE_Editor PRIVATE RenderCore)
|