This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * SPDX-License-Identifier: MIT | |
| * | |
| * cc -o minicog minicog.c $(pkg-config wpe-webkit-1.1 cogcore --cflags --libs) | |
| */ | |
| #include <cog/cog.h> | |
| #include <sys/reboot.h> | |
| static const char *s_starturl = NULL; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * SPDX-License-Identifier: MIT | |
| * | |
| * cc -o minicog minicog.c $(pkg-config wpe-webkit-1.1 cogcore --cflags --libs) | |
| */ | |
| #include <cog/cog.h> | |
| static const char *s_starturl = NULL; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required (VERSION 2.8) | |
| # projectname is the same as the main-executable | |
| project(pctest) | |
| find_package(PkgConfig) | |
| pkg_check_modules(PC one) | |
| message("PC_INCLUDE_DIRS ... ${PC_INCLUDE_DIRS}") | |
| message("PC_CFLAGS ......... ${PC_CFLAGS}") | |
| message("PC_CFLAGS_OTHER ... ${PC_CFLAGS_OTHER}") |