Turn on profiling, commit dependencies

This commit is contained in:
2026-05-24 10:11:01 -04:00
parent 14ed90b5f4
commit c23fd2b5ee
5 changed files with 10 additions and 6 deletions

View File

@@ -1,6 +1,10 @@
cmake_minimum_required(VERSION 3.10)
project(akgltest LANGUAGES C)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -pg")
add_subdirectory(deps/jansson EXCLUDE_FROM_ALL)
add_subdirectory(deps/libakerror EXCLUDE_FROM_ALL)
add_subdirectory(deps/libakstdlib EXCLUDE_FROM_ALL)