Project setup
This commit is contained in:
18
examples/basicGLFWWindow/CMakeLists.txt
Normal file
18
examples/basicGLFWWindow/CMakeLists.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
cmake_minimum_required(VERSION 3.28)
|
||||
project(oatmeal)
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
add_executable(basicGLFWWindow "${CMAKE_CURRENT_SOURCE_DIR}/main.cpp")
|
||||
target_include_directories(basicGLFWWindow PRIVATE oatmeal SharedUtils)
|
||||
target_link_libraries(basicGLFWWindow oatmeal SharedUtils)
|
||||
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
set_target_properties(basicGLFWWindow PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin/Debug/")
|
||||
endif()
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "Release")
|
||||
set_target_properties(basicGLFWWindow PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin/Release/")
|
||||
endif()
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
|
||||
set_target_properties(basicGLFWWindow PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin/Relwithdeb/")
|
||||
endif()
|
||||
|
||||
10
examples/basicGLFWWindow/main.cpp
Normal file
10
examples/basicGLFWWindow/main.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include "shared/logger.h"
|
||||
|
||||
int main() {
|
||||
OatmealUtils::initLogging();
|
||||
OatmealUtils::createLogger("window", nullptr);
|
||||
|
||||
OatmealUtils::get("window")->info("Test");
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user