Skip to content

Commit

Permalink
Playing with CMake...
Browse files Browse the repository at this point in the history
  • Loading branch information
somanuell committed Oct 21, 2024
1 parent b7f7b7c commit 64f461c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ampul/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
cmake_minimum_required(VERSION 3.10)
project(ampul)
add_library(ampul STATIC)
target_sources(ampul PRIVATE "ampul.cpp")
5 changes: 5 additions & 0 deletions ampul/src/ampul.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <cstdint>
bool CreateQueue( const char* pszQueueName, uint32_t ClusterCount, uint32_t ClusterSize, uint32_t SlotCount, void* & hQueue ) {
hQueue = nullptr;
return true;
}

0 comments on commit 64f461c

Please sign in to comment.