init commit
This commit is contained in:
7
Editor/CMakeLists.txt
Normal file
7
Editor/CMakeLists.txt
Normal file
@ -0,0 +1,7 @@
|
||||
project(PrismEditor)
|
||||
|
||||
file(GLOB_RECURSE SRC_SOURCE ./**.cpp)
|
||||
|
||||
add_executable(${PROJECT_NAME} ${SRC_SOURCE})
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE Prism-shared)
|
||||
12
Editor/Editor/Editor.cpp
Normal file
12
Editor/Editor/Editor.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
//
|
||||
// Created by sfd on 25-11-15.
|
||||
//
|
||||
|
||||
#include "Editor.h"
|
||||
#include <iostream>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout << "Hello World!\n";
|
||||
}
|
||||
|
||||
10
Editor/Editor/Editor.h
Normal file
10
Editor/Editor/Editor.h
Normal file
@ -0,0 +1,10 @@
|
||||
//
|
||||
// Created by sfd on 25-11-15.
|
||||
//
|
||||
|
||||
#ifndef EDITOR_H
|
||||
#define EDITOR_H
|
||||
|
||||
|
||||
|
||||
#endif //EDITOR_H
|
||||
Reference in New Issue
Block a user