cmake_rc added.

This commit is contained in:
Kolan Sh 2012-12-18 12:07:22 +04:00
parent 2a7ae317e3
commit 2048757054
6 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,5 @@
CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
SET (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/run")
ADD_SUBDIRECTORY (src)

View File

@ -0,0 +1 @@
IDR_MAINFRAME ICON "icons\\texreport-gtk_128x128.ico"

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

View File

@ -0,0 +1 @@
ADD_EXECUTABLE (cmake_rc main.c ${PROJECT_SOURCE_DIR}/cmake_rc.rc)

7
vala/cmake_rc/src/main.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main (void)
{
puts ("Hello world!");
return 0;
}