mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 20:19:53 +00:00
85baac1503
This new CPack generator produces an *.msi installer file. Requires having the WiX Toolset installed in order to work properly. Download the WiX Toolset installer "WiX36.exe" here: http://wix.codeplex.com/releases/view/93929
8 lines
92 B
C++
8 lines
92 B
C++
#include "mylib.h"
|
|
#include "stdio.h"
|
|
|
|
void mylib_function()
|
|
{
|
|
printf("This is mylib");
|
|
}
|