Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@
[submodule "vendor/googletest"]
path = vendor/googletest
url = https://github.com/google/googletest.git
[submodule "vendor/fmt"]
path = vendor/fmt
url = https://github.com/fmtlib/fmt
25 changes: 25 additions & 0 deletions Benchmark/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Engine
# Copyright 2026 Daynlight
# Licensed under the GNU General, Version 3.0.
# See LICENSE file for details.



cmake_minimum_required(VERSION 3.15)
project(Benchmark LANGUAGES CXX)

set(src
main.cpp
)

add_executable(Benchmark ${src})

target_link_libraries(Benchmark PRIVATE
Utils
fmt
)

target_include_directories(unit_tests PRIVATE
${CMAKE_SOURCE_DIR}/Engine/Core
${CMAKE_SOURCE_DIR}/Engine/Utils
)
Loading
Loading