Initial
This commit is contained in:
10
Src/IAESandbox/CMakeLists.txt
Normal file
10
Src/IAESandbox/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
||||
|
||||
set(IAESandbox_Sources
|
||||
imp/cpp/Main.cpp
|
||||
)
|
||||
|
||||
add_executable(IAESandbox ${IAESandbox_Sources})
|
||||
|
||||
target_include_directories(IAESandbox PRIVATE imp/hpp)
|
||||
|
||||
target_link_libraries(IAESandbox PRIVATE IAEngine)
|
||||
7
Src/IAESandbox/imp/cpp/Main.cpp
Normal file
7
Src/IAESandbox/imp/cpp/Main.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
#include <IAEngine/IAEngine.hpp>
|
||||
|
||||
int main(int argc, char*argv[])
|
||||
{
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user