sonicdebris /
asan-android-test
Example of enabling address sanitizer for android native project, using cmake
Loading repository data…
edumentab / repository
Example of project structure for a C++ project with cmake
This repository is a companion to our blogpost on
Configuring CMake for success. It
contains an example of our structure for a minimal program called palindrome which checks if a
word is a palindrome, i.e. a word that reads the same backward as forward,
see Wikipedia's article on Palindromes for some examples.
This repository contains subfolders with different versions of our project setup:
This is the general setup for building a palindrome executable with some unittests.
Setup for building libPalindrome as a public library to be used by others.
Example setup for building an Android app for our C++ libPalindrome which we connect to via JNI
(Java Native Interface). We keep the unittests from the general setup and hook them up so we can
execute them outside the Android environment.
Selected from shared topics, language and repository description—not editorial ratings.
sonicdebris /
Example of enabling address sanitizer for android native project, using cmake
vishal83 /
A demonstration of how native projects can be created as static library and be part of a library which can then be linked up to the main application into a shared library.