basic project setup
This commit is contained in:
parent
c92ec0eb0e
commit
cd9f7a8bf6
8 changed files with 55 additions and 0 deletions
7
sandbox/CMakeLists.txt
Normal file
7
sandbox/CMakeLists.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
project(sandbox)
|
||||
|
||||
add_executable(sandbox
|
||||
src/Application.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(sandbox quark)
|
5
sandbox/src/Application.cpp
Normal file
5
sandbox/src/Application.cpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include "Test.hpp"
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
quark::Print();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue